We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a749bd2 commit 4551f12Copy full SHA for 4551f12
1 file changed
.github/workflows/test.yml
@@ -54,8 +54,9 @@ jobs:
54
if: env.skip_tests == 'false'
55
run: |
56
python -m pytest src/tests/backend/test_app.py --cov=backend.app --cov-report= --cov-config=.coveragerc -q > /dev/null 2>&1
57
- python -m pytest src/tests/backend --cov=backend --cov-append --cov-report= --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py
+ python -m pytest src/tests/backend --cov=backend --cov-append --cov-report= --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py 2>&1 | tee /tmp/pytest_output.txt
58
python -m coverage report --rcfile=.coveragerc
59
+ tail -1 /tmp/pytest_output.txt
60
61
- name: Skip coverage report if no tests
62
if: env.skip_tests == 'true'
0 commit comments