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