chore: add nextest config toml (#3072)

This commit is contained in:
Hansie Odendaal
2026-07-03 11:06:17 +02:00
committed by GitHub
parent c3e349b937
commit edd184fc65
+15
View File
@@ -0,0 +1,15 @@
[profile.default]
# Per-package slow-test and termination policy.
# Tests are marked SLOW after `period`.
# They are killed after `period * terminate-after`.
# For unit tests, kill after 30s * 4 = 2m
[[profile.default.overrides]]
filter = "not package(logos-blockchain-tests)"
slow-timeout = { period = "30s", terminate-after = 4 }
# For e2e integration tests, kill after 2m * 5 = 10m
[[profile.default.overrides]]
filter = "package(logos-blockchain-tests)"
slow-timeout = { period = "2m", terminate-after = 5 }