From 1a24484d1e0b67c3abc498f7e8334a64878a5e8c Mon Sep 17 00:00:00 2001 From: Christian Ledermann Date: Mon, 16 Oct 2023 14:36:23 +0100 Subject: [PATCH] call codecov only once --- .github/workflows/run-all-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-all-tests.yml b/.github/workflows/run-all-tests.yml index 9f8fc509..98c88c88 100644 --- a/.github/workflows/run-all-tests.yml +++ b/.github/workflows/run-all-tests.yml @@ -46,9 +46,11 @@ jobs: run: | pytest tests --cov=fastkml --cov=tests --cov-fail-under=88 --cov-report=xml - name: "Upload coverage to Codecov" + if: ${{ matrix.python-version==3.11 }} uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: true + verbose: true static-tests: runs-on: ubuntu-latest