mirror of https://github.com/astral-sh/uv
Add nextest config for retry of flaky test (#996)
We should definitely sort this out per #863 but until then I want to stop getting false reports of failed CI please and this seems better than turning off the test entirely. Alternatively #993
This commit is contained in:
parent
69c72b6fa1
commit
a6a5894901
|
|
@ -0,0 +1,8 @@
|
|||
[profile.default]
|
||||
# Mark tests that take longer than 10s as slow
|
||||
slow-timeout = "10s"
|
||||
|
||||
[[profile.default.overrides]]
|
||||
# The following test has a non-determinstic snapshot
|
||||
filter = 'test(excluded_only_compatible_version|dependency_excludes_range_of_compatible_versions)'
|
||||
retries = 3
|
||||
Loading…
Reference in New Issue