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" }