We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a6e354 commit dcca12eCopy full SHA for dcca12e
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 -q
+ pytest_output=$(python -m pytest src/tests/backend --cov=backend --cov-append --cov-report= --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py -q 2>&1 | tail -1)
58
python -m coverage report --rcfile=.coveragerc
59
+ echo "$pytest_output"
60
61
# - name: Run tests with coverage
62
# if: env.skip_tests == 'false'
0 commit comments