mirror of https://github.com/citusdata/citus.git
Only fail if code coverage drops by over 0.5%
Currently codecov, annoyingly, fails the PR whenever coverage decreases. This commit changes the threshold, and will only fail PRs if: - coverage falls below 80% - coverage drops by more than 0.5%pull/1025/head
parent
4d61fe24fd
commit
76d2463e4d
|
@ -13,8 +13,11 @@ coverage:
|
||||||
round: down
|
round: down
|
||||||
status:
|
status:
|
||||||
changes: false
|
changes: false
|
||||||
patch: true
|
patch: false
|
||||||
project: true
|
project:
|
||||||
|
target: 80
|
||||||
|
threshold: 0.5
|
||||||
|
base: pr
|
||||||
parsers:
|
parsers:
|
||||||
gcov:
|
gcov:
|
||||||
branch_detection:
|
branch_detection:
|
||||||
|
|
Loading…
Reference in New Issue