Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,4 @@ jobs:
- name: Running tests with pytest.
run: |
set -o pipefail
pytest --cov=./ --cov-report=xml:coverage.xml --cov-report=term-missing
- name: Upload coverage to Codecov.
uses: codecov/codecov-action@v4
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
pytest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Performance - Suggestion] Consider keeping --cov=./ --cov-report=term-missing even without the Codecov upload step. These flags provide valuable coverage visibility directly in the CI logs (showing which specific lines are not covered), without requiring any external service. Only --cov-report=xml:coverage.xml was specifically needed for the Codecov upload. Suggested command: pytest --cov=./ --cov-report=term-missing.

Suggested change
pytest
pytest --cov=./ --cov-report=term-missing

Loading