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
7 changes: 6 additions & 1 deletion noir-projects/contract-snapshots/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ function test {
echo "INSTA_UPDATE is not permitted in CI. Run 'cargo insta accept' locally and commit." >&2
exit 1
fi
INSTA_UPDATE=no cargo test --quiet
# TODO(#12933 on noir-lang/noir): `expand::test_avm_test_contract` is skipped because `nargo expand`
# emits the generated contract-interface functions in hashmap-iteration order, which
# is not stable across nargo builds/runs. The snapshot is correct but the test fails
# intermittently in the merge queue on order-only diffs. Re-enable once noir makes the
# expand output order deterministic (e.g. sort interface fns by name/selector).
INSTA_UPDATE=no cargo test --quiet -- --skip expand::test_avm_test_contract
}

function test_cmds {
Expand Down
Loading