We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef41020 commit 8db20ffCopy full SHA for 8db20ff
.config/nextest.toml
@@ -27,3 +27,8 @@ success-output = "never"
27
status-level = "pass"
28
# Only run integration tests with this profile
29
default-filter = "package(integration-tests)"
30
+
31
+[profile.integration.junit]
32
+path = "junit.xml"
33
+store-success-output = true
34
+store-failure-output = true
.github/workflows/main.yml
@@ -50,6 +50,14 @@ jobs:
50
- name: Run integration tests
51
run: just test-integration
52
53
+ - name: Upload junit XML
54
+ if: always()
55
+ uses: actions/upload-artifact@v4
56
+ with:
57
+ name: integration-junit-xml
58
+ path: target/nextest/integration/junit.xml
59
+ retention-days: 7
60
61
- name: Create archive
62
run: just archive
63
0 commit comments