From 762a2e818a62bdce0ace03c5f7507fef086860c7 Mon Sep 17 00:00:00 2001 From: Yashodhan <54112038+YJDoc2@users.noreply.github.com> Date: Fri, 16 Feb 2024 17:40:09 +0530 Subject: [PATCH] Try setting test-threads count to 1 (#2685) --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index cc8e6b90e..1167e6c91 100644 --- a/justfile +++ b/justfile @@ -39,11 +39,11 @@ test-basic: test-unit test-doc # run cargo unit tests test-unit: - {{ cwd }}/scripts/cargo.sh test --lib --bins --all --all-targets --all-features --no-fail-fast + {{ cwd }}/scripts/cargo.sh test --lib --bins --all --all-targets --all-features --no-fail-fast -- --test-threads=1 # run cargo doc tests test-doc: - {{ cwd }}/scripts/cargo.sh test --doc + {{ cwd }}/scripts/cargo.sh test --doc -- --test-threads=1 # run permutated feature compilation tests test-features: