mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00:00
put venv in path instead of manually hardcoding bins
This commit is contained in:
parent
5e56c0f14e
commit
78e1b8c15b
1 changed files with 4 additions and 3 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue