Skip to content

Commit

Permalink
Debug cargo test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gligneul committed Nov 22, 2024
1 parent e1a5a89 commit 3d177b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3d177b9

Please sign in to comment.