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
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python3 -m venv .venv
|
python3 -m venv .venv
|
||||||
./.venv/bin/python -m pip install .
|
source .venv/bin/activate
|
||||||
./.venv/bin/python -m pip install pytest bottle
|
python -m pip install .
|
||||||
|
python -m pip install pytest bottle
|
||||||
|
|
||||||
- name: Test built package with pytest
|
- name: Test built package with pytest
|
||||||
run: |
|
run: |
|
||||||
./.venv/bin/python -m pytest -s
|
python -m pytest -s
|
||||||
|
|
||||||
docker-test:
|
docker-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue