File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
noir-projects/noir-protocol-circuits Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,12 @@ function build {
174174
175175function test_cmds {
176176 $NARGO test --list-tests --silence-warnings | sort | while read -r package test ; do
177- echo " $circuits_hash noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test "
177+ if [[ " $package " == " rollup_lib" && " $test " == " block_root::block_root_rollup_inputs::tests::correct_blobs_with_non_empty_fields" ]]; then
178+ # Set a custom timeout > 10m for this test.
179+ echo " $circuits_hash :TIMEOUT=15m noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test "
180+ else
181+ echo " $circuits_hash noir-projects/scripts/run_test.sh noir-protocol-circuits $package $test "
182+ fi
178183 done
179184 # We don't blindly execute all circuits as some will have no `Prover.toml`.
180185 circuits_to_execute="
You can’t perform that action at this time.
0 commit comments