mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

We observed recent deadlocks (e.g.
2522386625
)
causing CI to run until the default github actions timeout. To prevent
this, we add a 60s timeout in nextest. 60s should be enough both on CI
and on developers' machines.
4 lines
192 B
TOML
4 lines
192 B
TOML
[profile.default]
|
|
# Mark tests that take longer than 10s as slow.
|
|
# Terminate after 90s as a stop-gap measure to terminate on deadlock.
|
|
slow-timeout = { period = "10s", terminate-after = 9 }
|