Skip to content

Commit 458e0dc

Browse files
committed
fix(e2e): stop emitting every nested automine test cmd twice
The tests array listed the automine subdirectories explicitly and also kept the src/automine/!(simulation)/**/*.test.ts catch-all (a merge artifact), so every nested automine test was emitted as two identical cmds. Both copies run under the same docker container name; when they overlap, one docker_isolate force-removes the other's live container, failing that test, and the fresh-named retry then passes. That is the mass automine FLAKED pattern (49 per run) on this stack. The deduplicated unique cmd set is unchanged (145 automine jobs).
1 parent 4483b47 commit 458e0dc

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@ function test_cmds {
5353
local tests=(
5454
# List all standalone and nested tests, except for the ones listed above.
5555
src/automine/*.test.ts
56-
src/automine/contracts/*.test.ts
57-
src/automine/contracts/deploy/*.test.ts
58-
src/automine/contracts/nested/*.test.ts
59-
src/automine/token/*.test.ts
60-
src/automine/accounts/*.test.ts
61-
src/automine/effects/*.test.ts
62-
src/automine/delivery/*.test.ts
6356
src/automine/!(simulation)/**/*.test.ts
6457
src/automine/simulation/!(avm_simulator).test.ts
6558
src/single-node/!(prover)/**/*.test.ts

0 commit comments

Comments
 (0)