Make disk intensive managed python tests run serially

This commit is contained in:
Tomasz (Tom) Kramkowski 2025-12-18 15:43:35 +00:00
parent ca3a4749cc
commit a8d2eb2d3a

View file

@ -29,6 +29,7 @@ fail-fast = false
[test-groups]
serial = { max-threads = 1 }
io-bound = { max-threads = 1 }
[[profile.default.overrides]]
filter = 'test(native_auth)'
@ -37,3 +38,9 @@ test-group = 'serial'
[[profile.default.overrides]]
filter = 'package(uv-keyring)'
test-group = 'serial'
[[profile.ci-windows.overrides]]
platform = 'cfg(target_os = "windows")'
filter = 'test(/^python_install::/) + test(/^python_update::/) + test(/^python_find::/)'
test-group = 'io-bound'
priority = 1 # Start earlier so these can complete before the end