From 99b33828bab3a6dc4182711a03f1dbcb82f7e80f Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Sat, 15 Apr 2017 00:31:16 -0700 Subject: [PATCH] Decrease codecov coverage targets. As mentioned in the conversation starting at https://gitter.im/matplotlib/matplotlib?at=58eed50a69a692963ea5e238 codecov seems to be failing PR builds on the basis of incorrectly computed coverage deltas. This PR sets the required coverage values to 50%, so that the coverage is still computed but does not affect build anymore unless something dramatic happens. --- ci/codecov.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ci/codecov.yml b/ci/codecov.yml index 842794a555c6..61c425bf202e 100644 --- a/ci/codecov.yml +++ b/ci/codecov.yml @@ -10,19 +10,21 @@ coverage: status: patch: default: - target: '80' + target: 50% if_no_uploads: error if_not_found: success if_ci_failed: failure project: default: false library: - target: auto + target: 50% if_no_uploads: error if_not_found: success if_ci_failed: failure paths: '!lib/.*/tests/.*' - tests: - target: 97.9% + target: auto + if_no_uploads: error + if_not_found: success + if_ci_failed: failure paths: 'lib/.*/tests/.*'