From 3d177b93f1bf2d339625a3a5da1dabb2b1bcdf02 Mon Sep 17 00:00:00 2001 From: Gabriel de Quadros Ligneul Date: Thu, 21 Nov 2024 18:32:06 -0300 Subject: [PATCH] Debug cargo test in CI --- .ci/build_and_test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/build_and_test.sh b/.ci/build_and_test.sh index 67f2378..93644c1 100755 --- a/.ci/build_and_test.sh +++ b/.ci/build_and_test.sh @@ -16,10 +16,12 @@ else cargo build --locked fi +echo "!!!!!!!!!!! nproc=$(nproc)" + UNAME=$(uname -s) if [ "$UNAME" == "Darwin" ]; then # Disable docker tests on MacOS CI cargo test --no-default-features else - cargo test + cargo test -- --test-threads 1 --nocapture fi