ci: push nextest config
This commit is contained in:
parent
cbfa512d75
commit
4803788ffa
1 changed files with 27 additions and 0 deletions
27
.config/nextest.toml
Normal file
27
.config/nextest.toml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
[test-groups]
|
||||||
|
nff = { max-threads = 1 }
|
||||||
|
|
||||||
|
[profile.default]
|
||||||
|
|
||||||
|
# "retries" defines the number of times a test should be retried. If set to a
|
||||||
|
# non-zero value, tests that succeed on a subsequent attempt will be marked as
|
||||||
|
# flaky. Can be overridden through the `--retries` option.
|
||||||
|
retries = 2
|
||||||
|
|
||||||
|
# This will display all of fail, retry, slow
|
||||||
|
# see https://nexte.st/book/other-options.html?highlight=failure-output#--status-level-and---final-status-level
|
||||||
|
status-level = "skip"
|
||||||
|
|
||||||
|
# Treat a test that takes longer than this period as slow, and print a message.
|
||||||
|
# Given a non-zero positive integer, shutdown the tests when the number periods
|
||||||
|
# have passed.
|
||||||
|
slow-timeout = { period = "30s", terminate-after = 4 }
|
||||||
|
|
||||||
|
# * "immediate-final": output failures as soon as they happen and at the end of
|
||||||
|
# the test run
|
||||||
|
failure-output = "immediate-final"
|
||||||
|
|
||||||
|
# Do not cancel the test run on the first failure.
|
||||||
|
fail-fast = false
|
||||||
|
|
||||||
|
test-threads = 2
|
Loading…
Add table
Add a link
Reference in a new issue