Skip to content

Commit 41623b7

Browse files
committed
test(pci): skip test_attach_too_many_devices on PCI
Until #5299 is merged, this test will fail. Ignore PCI on this test for now until we sort out the changes in the other PR. Signed-off-by: Riccardo Mancini <[email protected]>
1 parent c894a33 commit 41623b7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/integration_tests/functional/test_max_devices.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ def test_attach_maximum_devices(uvm_plain_any):
1919
Test attaching maximum number of devices to the microVM.
2020
"""
2121
test_microvm = uvm_plain_any
22+
23+
if test_microvm.pci_enabled:
24+
pytest.skip("Skipping test for PCI devices. (FIXME: #5299)")
25+
2226
test_microvm.spawn()
2327

2428
# Set up a basic microVM.
@@ -44,6 +48,10 @@ def test_attach_too_many_devices(uvm_plain):
4448
Test attaching to a microVM more devices than available IRQs.
4549
"""
4650
test_microvm = uvm_plain
51+
52+
if test_microvm.pci_enabled:
53+
pytest.skip("Skipping test for PCI devices. (FIXME: #5299)")
54+
4755
test_microvm.spawn()
4856

4957
# Set up a basic microVM.

0 commit comments

Comments
 (0)