From f4ca531a5c9d835eee05b45a90497bb1d4d55077 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sun, 5 Dec 2021 22:22:46 +0100 Subject: [PATCH] ci(codecov): Wait for 2 builds to be submitted This should stop Codecov from complaining about low coverage after only half the tests have finished. See: https://docs.codecov.com/docs/notifications#section-preventing-notifications-until-after-n-builds Signed-off-by: David Mehren --- codecov.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..c16dca3a2 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,7 @@ +# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) +# SPDX-License-Identifier: CC0-1.0 + +codecov: + notify: + # We currently have integration tests and E2E tests. Codecov should wait until both are done. + after_n_builds: 2