You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Wait for all coverage matrix jobs to upload before reporting status.
# Each OS in the `coverage` job matrix in .github/workflows/main.yml does a
# single upload (its comma-separated lcov files are merged into one report),
# so this must equal the number of OS entries in that matrix. Without this,
# Codecov posts the `codecov/project` status after the first upload, before
# data from the other platforms has arrived, causing a spurious failure.
# Keep this in sync with the `coverage` matrix `os` list.
after_n_builds: 3
coverage:
precision: 1
round: down
range: 100..100
status:
project:
default:
target: 100
threshold: "0"
base: auto
ignore:
- "crates/testing_aids/**/*"
# Macro expansion causes coverage to be inaccurate in these files, so we ignore them for now. We can re-enable them once we have a better solution for macro coverage.