Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion yarn-project/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ function test_cmds {
if [[ "$test" =~ testbench ]]; then
# Testbench runs require more memory and CPU.
echo "$hash ISOLATE=1 CPUS=18 MEM=12g yarn-project/scripts/run_test.sh $test"
elif [[ "$test" == p2p/src/client/p2p_client.test.ts ]]; then
# Add debug logging for tests that require a bit more info
echo "$hash ISOLATE=1 LOG_LEVEL=debug yarn-project/scripts/run_test.sh $test"
else
echo "$hash ISOLATE=1 yarn-project/scripts/run_test.sh $test"
fi
Expand All @@ -127,7 +130,8 @@ function test_cmds {
# prover-node|p2p|ethereum|aztec: Isolated using docker above.
for test in !(end-to-end|kv-store|prover-node|p2p|ethereum|aztec|noir-bb-bench)/src/**/*.test.ts; do
[[ "$test" == prover-client/src/test/* ]] && continue
echo $hash yarn-project/scripts/run_test.sh $test
# Enable debug logging for a subset of unit tests that are causing trouble.
echo "$hash yarn-project/scripts/run_test.sh $test"
done

# Uses mocha for browser tests, so we have to treat it differently.
Expand Down