install correct requirements file in workflow

This commit is contained in:
2024-10-30 13:01:56 +01:00
parent 12d0370807
commit 1c459ae5d3
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |