Skip to content

Commit b380112

Browse files
Suppress output of app.py tests in CI workflow for cleaner logs
1 parent e5db332 commit b380112

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Run app.py tests separately (requires isolation due to mocking)
5454
if: env.skip_tests == 'false'
5555
run: |
56-
python -m pytest src/tests/backend/test_app.py --cov=backend.app --cov-report= --cov-config=.coveragerc -q
56+
python -m pytest src/tests/backend/test_app.py --cov=backend.app --cov-report= --cov-config=.coveragerc -q > /dev/null 2>&1
5757
5858
- name: Run all other backend tests with coverage
5959
if: env.skip_tests == 'false'

0 commit comments

Comments
 (0)