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
|
||||
status:
|
||||
changes: false
|
||||
patch: true
|
||||
project: true
|
||||
patch: false
|
||||
project:
|
||||
target: 80
|
||||
threshold: 0.5
|
||||
base: pr
|
||||
parsers:
|
||||
gcov:
|
||||
branch_detection:
|
||||
|
|
Loading…
Reference in New Issue