From ec44c74d53db4ea350ce68dceac060ff906922e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 21 Nov 2025 16:44:15 +0100 Subject: [PATCH] ci: Generate and upload junit files for the integration tests --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0181a719d..29a18c5a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -386,4 +386,11 @@ jobs: HOMESERVER_URL: "http://localhost:8008" HOMESERVER_DOMAIN: "synapse" run: | - cargo nextest run -p matrix-sdk-integration-testing --features "${{ matrix.feature }}" + cargo nextest run --profile ci -p matrix-sdk-integration-testing --features "${{ matrix.feature }}" + + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f + with: + files: ./target/nextest/ci/junit.xml + token: ${{ secrets.CODECOV_TOKEN }}