Skip to content
Closed
Changes from 1 commit
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
9 changes: 9 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ slow-timeout = { period = "1m", terminate-after = 5 }
filter = 'package(ethexe-service)'
leak-timeout = { period = "10s", result = "pass" }

# gear-lazy-pages pulls in wasmer-vm + mach exception ports on
# Apple Silicon; their teardown at process exit occasionally exceeds
# the default 5s leak window on busy macos-aarch64 runners and trips
# trivial tests like pages::tests::end_offset as LEAK-FAIL. Same fix
# pattern as ethexe-service: 10s window with result = pass.
[[profile.default.overrides]]
filter = 'package(gear-lazy-pages)'
leak-timeout = { period = "10s", result = "pass" }

[profile.default.junit]
path = "junit.xml"
store-success-output = false
Expand Down