Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/codecov.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
---
codecov:
branch: main
# https://docs.codecov.com/docs/common-recipe-list#see-coverage-on-ci-test-failures
require_ci_to_pass: false

# https://docs.codecov.com/docs/pull-request-comments#disable-comment
comment: false
comment: true

# https://docs.codecov.com/docs/commit-status
coverage:
Expand All @@ -14,7 +16,7 @@ coverage:
threshold: 3
paths:
- "socs/"
patch: false
patch: true

# When modifying this file, please validate using
# curl -X POST --data-binary @codecov.yml https://codecov.io/validate
5 changes: 5 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,12 @@ jobs:
coverage xml
coverage report

# Temporary to verify coverage report is present
- name: List files
run: ls -R

- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true