From c52f002b969023c79e183ab5b39af2df35daea0e Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 9 Mar 2020 14:08:52 -0400 Subject: [PATCH] Move `coverage xml` to its own step So it doesn't squash a failure result from the test suite --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 32bddc8..8b30315 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -56,6 +56,10 @@ jobs: MAGIC_FOLDER_HYPOTHESIS_PROFILE: "ci" run: | python -m coverage run -m twisted.trial _zkapauthorizer + + + - name: "Convert Coverage" + run: | coverage xml - uses: codecov/codecov-action@v1 -- GitLab