Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ default-filter = "package(integration-tests)"
path = "junit.xml"
store-success-output = true
store-failure-output = true

# Per-test overrides for libvirt tests that create VMs
# These tests race on creating libvirt base disks, so they need to run serially
# VMs get 4 vcpus by default, so require 4 threads to prevent any parallelism
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK this definitely improves our CI reliability...but it's still quite slow. I'll chase that separately.

[[profile.integration.overrides]]
filter = 'test(~^test_libvirt_run)'
threads-required = 4
Loading