1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# Configuration for codecov.io
# When editing this file, please validate its contents using:
# curl -X POST --data-binary @- https://codecov.io/validate < codecov.yml
comment:
layout: "header, diff, changes, uncovered"
coverage:
ignore:
- "numba/cuda/.*"
- "numba/hsa/.*"
status:
# This check can mark a build failed if too much new code
# is not covered (which happens often with JITted functions).
patch: false
project:
default:
# The build fails if total project coverage drops by more than 3%
target: auto
threshold: "3%"
|