Skip to content

Commit fe01aa0

Browse files
committed
nextest: Limit parallelism for to_disk too
Since having many to_disk run on the dinky default GHA runners can overwhelm them. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent 181232e commit fe01aa0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.config/nextest.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ store-success-output = true
3535
store-failure-output = true
3636

3737
# Per-test overrides for libvirt tests that create VMs
38-
# These tests race on creating libvirt base disks, so they need to run serially
39-
# VMs get 4 vcpus by default, so require 4 threads to prevent any parallelism
38+
# Tests that run `bootc install` can be heavy, so require 4 threads to limit parallelism
4039
[[profile.integration.overrides]]
41-
filter = 'test(~^test_libvirt_run)'
40+
filter = 'test(~^libvirt_run) | test(~^to_disk)'
4241
threads-required = 4

0 commit comments

Comments
 (0)