From c32365848333543c92bc596f5441a63e69adb7fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 10 May 2018 14:49:40 +0200 Subject: [PATCH] Fix broken YAML in a way that codecov understands Theoretically the previous was not a valid YAML at all, but it is fairly common for parsers to accept it, just in a wrong way. This results in a configuration where only the last value for duplicate keys is taken, instead of a hard error. --- codecov.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/codecov.yml b/codecov.yml index d81582d7..94d88d83 100644 --- a/codecov.yml +++ b/codecov.yml @@ -9,6 +9,12 @@ coverage: patch: default: target: 80% + ignore: + - "projects/SelfTest" + - "**/catch_reporter_tap.hpp" + - "**/catch_reporter_automake.hpp" + - "**/catch_reporter_teamcity.hpp" + - "**/external/clara.hpp" codecov: @@ -16,11 +22,3 @@ codecov: comment: layout: "diff" - -coverage: - ignore: - - "projects/SelfTest" - - "**/catch_reporter_tap.hpp" - - "**/catch_reporter_automake.hpp" - - "**/catch_reporter_teamcity.hpp" - - "**/external/clara.hpp"