👷 ci(nextest): configure nextest for CI environment

- disable fail-fast to ensure all tests are executed
- generate junit.xml report for test results
This commit is contained in:
Jeremiah Russell
2025-10-20 13:00:47 +01:00
committed by Jeremiah Russell
parent edb98980c7
commit 13351fe3f9
2 changed files with 6 additions and 2 deletions

6
.config/nextest.toml Normal file
View File

@@ -0,0 +1,6 @@
[profile.ci]
# Do not cancel the test run on the first failure.
fail-fast = false
[profile.ci.junit] # this can be some other profile, too
path = "junit.xml"