2026-08-27 22:09:51 +00:00
|
|
|
# Workspace-wide test-runner configuration for cargo-nextest.
|
|
|
|
|
#
|
|
|
|
|
# The suite mixes deadline-sensitive process and network tests (real children,
|
|
|
|
|
# real QUIC engines) with compute-heavy property tests. At full 12-thread
|
|
|
|
|
# parallelism OS scheduling delays blow through those deadlines — different
|
|
|
|
|
# timing tests fail on every loaded run — and the namespace reference-model
|
|
|
|
|
# guarantee test (~25s unloaded) stretches past the default 60s slow-timeout.
|
|
|
|
|
# Bounded threads plus a 180s slow period trades wall time for determinism
|
|
|
|
|
# without masking true hangs.
|
2026-08-22 17:18:25 +00:00
|
|
|
[profile.default]
|
2026-08-27 22:09:51 +00:00
|
|
|
test-threads = 4
|
|
|
|
|
slow-timeout = { period = "180s" }
|