ci: install requirements.txt into venv before test
All checks were successful
ci / test (push) Successful in 37s

This commit is contained in:
russell 2026-06-22 09:40:25 -04:00
parent 8958ac8dab
commit 7346f6e203
No known key found for this signature in database

View file

@ -13,6 +13,9 @@ jobs:
run: |
apt-get update -qq
apt-get install -y -qq python3-venv
pip install six pytest
- name: prime venv with package + test deps
run: |
make env
env/bin/pip install -r requirements.txt
- name: test
run: make test