From edd184fc65af57ddb4ac5bcea104a56e8eefd6b4 Mon Sep 17 00:00:00 2001 From: Hansie Odendaal <39146854+hansieodendaal@users.noreply.github.com> Date: Fri, 3 Jul 2026 11:06:17 +0200 Subject: [PATCH] chore: add nextest config toml (#3072) --- .config/nextest.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .config/nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 000000000..aab532445 --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,15 @@ +[profile.default] + +# Per-package slow-test and termination policy. +# Tests are marked SLOW after `period`. +# They are killed after `period * terminate-after`. + +# For unit tests, kill after 30s * 4 = 2m +[[profile.default.overrides]] +filter = "not package(logos-blockchain-tests)" +slow-timeout = { period = "30s", terminate-after = 4 } + +# For e2e integration tests, kill after 2m * 5 = 10m +[[profile.default.overrides]] +filter = "package(logos-blockchain-tests)" +slow-timeout = { period = "2m", terminate-after = 5 }