ci: Generate and upload junit files for the integration tests

This commit is contained in:
Damir Jelić
2025-11-21 16:44:15 +01:00
parent 7475f03b13
commit ec44c74d53
+8 -1
View File
@@ -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 }}