Skip to content

Commit 314eb4a

Browse files
committed
test: drop e2e_event_logs and e2e_avm_simulator from compat matrix
1 parent c65e17c commit 314eb4a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

yarn-project/end-to-end/bootstrap.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,9 @@ function avm_check_circuit {
262262
# tests are known-flaky and provide no additional backwards-compat coverage). Also excludes
263263
# kernelless_simulation, which asserts on the exact number of nullifiers emitted and breaks whenever
264264
# contracts add/remove nullifier emissions across versions (unrelated to the compat contract surface).
265+
# event_logs and avm_simulator are excluded for the same reason: they exercise contract surface that
266+
# evolves alongside the test code (TestLog gains methods, AVM assertion-string format changes with
267+
# nargo) rather than the PXE oracle surface that backwards compatibility actually guarantees.
265268
function compat_test_cmds {
266269
local version=${1:?version is required}
267270
local run_test_script="yarn-project/end-to-end/scripts/run_test.sh"
@@ -271,7 +274,7 @@ function compat_test_cmds {
271274
local tests=(
272275
src/e2e_!(prover|block_building|epochs)/*.test.ts
273276
src/e2e_p2p/reqresp/*.test.ts
274-
src/e2e_!(block_building|prover_*|kernelless_simulation).test.ts
277+
src/e2e_!(block_building|prover_*|kernelless_simulation|event_logs|avm_simulator).test.ts
275278
)
276279
for test in "${tests[@]}"; do
277280
local name=${test#*e2e_}

0 commit comments

Comments
 (0)