We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b2da3b commit f908badCopy full SHA for f908bad
.github/workflows/run_tests.yaml
@@ -27,12 +27,13 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip
29
pip install -r requirements.txt
30
+ pip install .
31
32
# Run the tests using pytest
33
- name: Run pytest
34
35
pip install pytest # Install pytest if not already in requirements
- pytest ./test --junitxml=test-results.xml # Generate test results as XML
36
+ pytest ./test/*.py --junitxml=test-results.xml # Generate test results as XML
37
38
# Upload test results
39
- name: Upload test results
0 commit comments