File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2929 - name : Test with pytest
3030 run : |
3131 export PYTHONPATH=$(pwd)/src
32- pytest -v --show-capture=stdout -k "not integration"
32+ pytest -v --show-capture=stdout -k "not integration" ./src/tests
3333
3434 test_windows :
3535 runs-on :
4747 - name : Test with pytest
4848 run : |
4949 $env:PYTHONPATH="$pwd\src"
50- pytest -v --show-capture=stdout -k "not integration"
50+ pytest -v --show-capture=stdout -k "not integration" ./src/tests
Original file line number Diff line number Diff line change 3535
3636 - name : Run Backend Tests with Coverage
3737 run : |
38- if python -m pytest --cov=. --cov-report=xml --cov-report=html --cov-report=term-missing --junitxml=coverage-junit.xml; then
38+ if python -m pytest --cov=. --cov-report=xml --cov-report=html --cov-report=term-missing --junitxml=coverage-junit.xml ./src/tests ; then
3939 echo "Tests completed, checking coverage."
4040 # Only fail if coverage does not meet criteria
4141 if [ -f coverage.xml ]; then
You can’t perform that action at this time.
0 commit comments