Skip to content

Commit e5db332

Browse files
Add quiet flag to pytest commands for cleaner output during test execution
1 parent ebf39b7 commit e5db332

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ 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
56+
python -m pytest src/tests/backend/test_app.py --cov=backend.app --cov-report= --cov-config=.coveragerc -q
5757
5858
- name: Run all other backend tests with coverage
5959
if: env.skip_tests == 'false'
6060
run: |
61-
python -m pytest src/tests/backend --cov=backend --cov-append --cov-report= --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py
61+
python -m pytest src/tests/backend --cov=backend --cov-append --cov-report= --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py -q
6262
6363
- name: Generate combined coverage report
6464
if: env.skip_tests == 'false'

0 commit comments

Comments
 (0)