mirror of
https://github.com/RGBCube/cstree
synced 2025-07-30 02:27:44 +00:00
Support and use cargo nextest
(#52)
This commit is contained in:
parent
c5279bae7d
commit
30597dbb8b
3 changed files with 63 additions and 7 deletions
29
.config/nextest.toml
Normal file
29
.config/nextest.toml
Normal file
|
@ -0,0 +1,29 @@
|
|||
|
||||
[profile.default]
|
||||
# Print out output for failing tests as soon as they fail, and also at the end
|
||||
# of the run (for easy scrollability).
|
||||
failure-output = "immediate-final"
|
||||
|
||||
[profile.ci-default-features]
|
||||
# Do not cancel the test run on the first failure.
|
||||
fail-fast = false
|
||||
|
||||
[profile.ci-default-features.junit]
|
||||
path = "junit-default-features.xml"
|
||||
report-name = "default-features"
|
||||
|
||||
[profile.ci-all-features]
|
||||
# Do not cancel the test run on the first failure.
|
||||
fail-fast = false
|
||||
|
||||
[profile.ci-all-features.junit]
|
||||
path = "junit-all-features.xml"
|
||||
report-name = "all-features"
|
||||
|
||||
[profile.ci-all-features-release]
|
||||
# Do not cancel the test run on the first failure.
|
||||
fail-fast = false
|
||||
|
||||
[profile.ci-all-features-release.junit]
|
||||
path = "junit-all-features-release.xml"
|
||||
report-name = "all-features-release"
|
Loading…
Add table
Add a link
Reference in a new issue