chore: Update coverage test workflow to install dependencies from requirements.txt

This commit is contained in:
Soulter
2024-08-17 05:10:05 -04:00
parent 67792100bb
commit dcf96896ef
+5 -2
View File
@@ -20,9 +20,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: pip install pytest pytest-cov pytest-asyncio
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov pytest-asyncio
- name: Run tests
run: PYTHONPATH=./ pytest --cov=. tests/ -v