From f78c755746f3f423985468c552c00e4d96943ad3 Mon Sep 17 00:00:00 2001 From: katia-sentry Date: Mon, 14 Apr 2025 10:58:39 -0400 Subject: [PATCH] add test analytics --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index de97def56012..2aaa5a8dcc99 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -28,8 +28,12 @@ jobs: - name: Run tests run: python scripts/ci/run-tests --with-cov - name: Run checks - run: python scripts/ci/run-check + run: python scripts/ci/run-tests --with-cov --junitxml=test-results.xml - name: codecov uses: codecov/codecov-action@v5 with: directory: tests + - name: Upload test results to Codecov + uses: codecov/test-results-action@v1 + with: + files: test-results.xml