Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ final-status-level = "slow"
# continue if a test fails in CI
fail-fast = false

# output JUnit XML report
junit = { path = "report.xml" }

##### Configuration overrides for integration tests in CI runs #####
[[profile.ci.overrides]]
filter = "kind(test)"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,9 @@ jobs:
shell: bash
run: cargo nextest run --profile ci --archive-file ./target/integration-test-archive.tar.zst ${{ inputs.testRunnerOptions }} --workspace-remap "${GITHUB_WORKSPACE}"

- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: 'target/nextest/ci/*.xml'