Increase nextest timeout for fabro-cli integration tests

These tests invoke the CLI binary and take longer than unit tests,
so flag SLOW at 5s and hard-kill at 20s.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-31 20:29:36 -04:00
parent 6383e7037b
commit ddd7550408
No known key found for this signature in database

View file

@ -2,6 +2,10 @@
# Unit tests: flag SLOW after 2s, hard-kill after 4s
slow-timeout = { period = "3s", terminate-after = 2 }
[[profile.default.overrides]]
filter = "package(fabro-cli) & kind(test)"
slow-timeout = { period = "5s", terminate-after = 4 }
[profile.e2e]
# E2E (ignored) tests: flag SLOW after 10s, hard-kill after 30s
slow-timeout = { period = "10s", terminate-after = 3 }