From 513eb194fe67fe950b580cea5173f4d6bddaf550 Mon Sep 17 00:00:00 2001 From: Katia <129207373+katia-sentry@users.noreply.github.com> Date: Mon, 14 Apr 2025 11:42:17 -0400 Subject: [PATCH] add test analytics (#1321) --- .github/workflows/tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index da4ed963..3d5471d0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -126,7 +126,7 @@ jobs: - name: Run tests run: | - coverage run -m pytest + coverage run -m pytest --junitxml=test-results.xml - name: Process coverage data run: | @@ -140,3 +140,10 @@ jobs: files: ./coverage.xml fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} + + - name: Upload test results + uses: codecov/codecov-action@v4 + with: + files: ./test-results.xml + fail_ci_if_error: false + type: test-results