Skip to content

Commit f908bad

Browse files
correction (2)
1 parent 5b2da3b commit f908bad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/run_tests.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ jobs:
2727
run: |
2828
python -m pip install --upgrade pip
2929
pip install -r requirements.txt
30+
pip install .
3031
3132
# Run the tests using pytest
3233
- name: Run pytest
3334
run: |
3435
pip install pytest # Install pytest if not already in requirements
35-
pytest ./test --junitxml=test-results.xml # Generate test results as XML
36+
pytest ./test/*.py --junitxml=test-results.xml # Generate test results as XML
3637
3738
# Upload test results
3839
- name: Upload test results

0 commit comments

Comments
 (0)