32 lines
751 B
TOML
32 lines
751 B
TOML
|
|
# Nextest configuration for living-spec-standalone
|
||
|
|
# See https://nexte.st/book/configuration.html for more details
|
||
|
|
|
||
|
|
[profile.default]
|
||
|
|
# Show output for failing tests
|
||
|
|
failure-output = "immediate"
|
||
|
|
# Show output for passing tests as well
|
||
|
|
success-output = "never"
|
||
|
|
# Cancel test run on the first failure
|
||
|
|
fail-fast = false
|
||
|
|
# Number of retries for failing tests
|
||
|
|
retries = 0
|
||
|
|
|
||
|
|
[profile.ci]
|
||
|
|
# CI-specific profile
|
||
|
|
failure-output = "immediate-final"
|
||
|
|
success-output = "never"
|
||
|
|
fail-fast = false
|
||
|
|
# Retry flaky tests once in CI
|
||
|
|
retries = 1
|
||
|
|
|
||
|
|
[profile.coverage]
|
||
|
|
# Profile specifically for code coverage runs
|
||
|
|
failure-output = "immediate-final"
|
||
|
|
success-output = "never"
|
||
|
|
fail-fast = false
|
||
|
|
retries = 0
|
||
|
|
|
||
|
|
# Test groups configuration
|
||
|
|
[test-groups.integration]
|
||
|
|
max-threads = 1
|