From 1adbd7d50709e64e1b7668b13c3e9ad95429eaf1 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 24 May 2023 11:05:49 +0200 Subject: [PATCH] Added codecov config to repo refs https://github.com/TryGhost/Toolbox/issues/583 - this commit adds config for codecov because this repo needs some changes that aren't suitable for the global config - this probably needs some adjusting over time but should get us started for now --- .github/codecov.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/codecov.yml diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 0000000000..c2fb31f8c4 --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,21 @@ +codecov: + require_ci_to_pass: true +coverage: + status: + patch: false + project: + default: + flags: + - unit-tests + - e2e-tests + e2e-tests: + flags: + - e2e-tests + unit-tests: + flags: + - unit-tests +flags: + e2e-tests: + carryforward: true + unit-tests: + carryforward: true