From dd445993082c095d200c1856086bf82df455c9e8 Mon Sep 17 00:00:00 2001 From: Yashodhan Joshi Date: Thu, 15 Feb 2024 12:09:19 +0530 Subject: [PATCH] Try setting test-threads count to 1 --- 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: