Skip to content

Commit

Permalink
Fix CI: Add -s option to pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
maisim committed Nov 23, 2023
1 parent 7ca7373 commit 2f3a50b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- run: pip install '.[test]'
- run: pytest --cov --disable-warnings
- run: pytest -s --cov --disable-warnings
- uses: codecov/codecov-action@v3

# End-to-end tests
Expand All @@ -83,7 +83,7 @@ jobs:
with:
python-version: "3.11"
- run: pip install '.[test]'
- run: pytest -m end_to_end_${{ matrix.test-name }}
- run: pytest -s -m end_to_end_${{ matrix.test-name }}

# Finally, single jon to check if all completed, for use in protected branch
#
Expand Down

0 comments on commit 2f3a50b

Please sign in to comment.