From f9076cccfa00168cd451c386d2ba253ad9423400 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sat, 15 Nov 2025 09:01:55 +0000 Subject: [PATCH] tests: Add test timeout (10 minutes) to nextest configuration Signed-off-by: Rob Bradford --- .config/nextest.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .config/nextest.toml diff --git a/.config/nextest.toml b/.config/nextest.toml new file mode 100644 index 000000000..a88e59909 --- /dev/null +++ b/.config/nextest.toml @@ -0,0 +1,3 @@ +[profile.default] +# Don't let one individual test run for more than 10 minutes +slow-timeout = { period = "60s", terminate-after = 10 }