From 4803788ffa411a31dd8b40002a1d6450faabaaf2 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 2 Jun 2025 17:21:26 +0300 Subject: [PATCH] ci: push nextest config --- .config/nextest.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .config/nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 0000000..084d4e4 --- /dev/null +++ b/.config/nextest.toml @@ -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