Skip to content

Commit 2e462cf

Browse files
aakoshhTomAFrench
andauthored
chore(test): Filter ram_blowup_regression by default on local testing (#9721)
Co-authored-by: Tom French <[email protected]>
1 parent 569ce5f commit 2e462cf

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.config/nextest.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1+
# Default profile for local testing. Other profiles are layered on top.
2+
[profile.default]
3+
# We do not run `ram_blowup_regression` by default as it's very slow
4+
default-filter = "not test(ram_blowup_regression)"
5+
16
[profile.ci]
27
# Do not cancel the test run on the first failure.
38
fail-fast = false
49

5-
# We do not run `ram_blowup_regression` by default as it's very slow
6-
default-filter = "not test(ram_blowup_regression)"
7-
810
[profile.ci-master]
911
# Do not cancel the test run on the first failure.
1012
fail-fast = false
11-
13+
# Run all tests.
1214
default-filter = "all()"
1315

1416
[profile.merge-queue]
1517
# fail fast to kick from merge queue faster.
1618
fail-fast = true
17-
1819
# Disable fuzzing to avoid flakiness
1920
default-filter = "not test(ram_blowup_regression) or not (package(noir_ast_fuzzer_fuzz) or test(arb_program_freqs_in_expected_range))"

0 commit comments

Comments
 (0)