From 0b546fc31b030b8a42eb9824036d0b15594fa5dd Mon Sep 17 00:00:00 2001 From: Josh Lind Date: Fri, 15 Nov 2024 10:17:00 -0500 Subject: [PATCH] [CI] Increase required test threads to reduce saturation. --- .config/nextest.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/nextest.toml b/.config/nextest.toml index 0bf471db4f7d5..996e9910a96df 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -5,6 +5,9 @@ status-level = "skip" failure-output = "immediate-final" # Cancel test run on the first failure. Accounts for retries. fail-fast = true +# To avoid CPU saturation and test timeouts (due to heavy/multithreaded +# tests), we increase the number of threads required per test. +threads-required = 3 junit = { path = "junit.xml" }