Skip to content

Commit c1ec7bc

Browse files
Manciukicbchalios
authored andcommitted
test(concurrency): run also with PCI
Run the test_run_concurrency with PCI enabled as well. Signed-off-by: Riccardo Mancini <[email protected]> Signed-off-by: Babis Chalios <[email protected]>
1 parent 76b81d8 commit c1ec7bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration_tests/functional/test_concurrency.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
NO_OF_MICROVMS = 20
88

99

10-
def test_run_concurrency(microvm_factory, guest_kernel, rootfs):
10+
def test_run_concurrency(microvm_factory, guest_kernel, rootfs, pci_enabled):
1111
"""
1212
Check we can spawn multiple microvms.
1313
"""
1414

1515
def launch1():
16-
microvm = microvm_factory.build(guest_kernel, rootfs)
16+
microvm = microvm_factory.build(guest_kernel, rootfs, pci=pci_enabled)
1717
microvm.time_api_requests = False # is flaky because of parallelism
1818
microvm.spawn()
1919
microvm.basic_config(vcpu_count=1, mem_size_mib=128)

0 commit comments

Comments
 (0)