Skip to content

Commit bdd15df

Browse files
Add quiet mode to pytest command in test workflow for cleaner output
1 parent 6577ea0 commit bdd15df

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
@@ -67,7 +67,7 @@ jobs:
6767
- name: Run tests with coverage
6868
if: env.skip_tests == 'false'
6969
run: |
70-
if python -m pytest src/tests/backend/test_app.py --cov=backend --cov-config=.coveragerc && \
70+
if python -m pytest src/tests/backend/test_app.py --cov=backend --cov-config=.coveragerc -q > /dev/null 2>&1 && \
7171
python -m pytest src/tests/backend --cov=backend --cov-append --cov-report=term --cov-report=xml --cov-config=.coveragerc --ignore=src/tests/backend/test_app.py; then
7272
echo "Tests completed, checking coverage."
7373
if [ -f coverage.xml ]; then

0 commit comments

Comments
 (0)