1
0
Fork 0
mirror of synced 2024-06-02 18:44:59 +12:00

put venv in path instead of manually hardcoding bins

This commit is contained in:
Nick Sweeting 2020-07-28 07:27:42 -04:00
parent 5e56c0f14e
commit 78e1b8c15b

View file

@ -62,12 +62,13 @@ jobs:
- name: Install dependencies
run: |
python3 -m venv .venv
./.venv/bin/python -m pip install .
./.venv/bin/python -m pip install pytest bottle
source .venv/bin/activate
python -m pip install .
python -m pip install pytest bottle
- name: Test built package with pytest
run: |
./.venv/bin/python -m pytest -s
python -m pytest -s
docker-test:
runs-on: ubuntu-latest