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
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ jobs:
run: |
python -m tox -vv -e code-test
- uses: codecov/codecov-action@v3
# Codecov have a 100-upload limit per commit, and there are 3 * 6 files upload each time run pytest,
# We should not run upload in schedule GitHub event, because the sixth day we do not change our code
# and the upload limit will be reached 3 * 6 * 6. For more detail can see:
# https://community.codecov.com/t/ci-failure-due-to-too-many-uploads-to-this-commit/2587/7
if: ${{ github.event_name != 'schedule' }}
with:
token: ${{ env.CODECOV_TOKEN }}
files: ./coverage.xml
Expand Down