From 6b3449407aad237c1f40acb35a89691bc056c06c Mon Sep 17 00:00:00 2001 From: Alberto Faria Date: Thu, 15 Feb 2024 22:26:19 +0000 Subject: [PATCH] test.sh: Decrease test parallelism Signed-off-by: Alberto Faria --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 6707057..38b5041 100755 --- a/test.sh +++ b/test.sh @@ -42,7 +42,7 @@ done nextest_run=( nextest run \ - --all-targets --all-features \ + --all-targets --all-features --test-threads $(( $(nproc) / 2 )) \ -- "${@/#/test_run::engine_}" )