Skip to content

Commit f90a95b

Browse files
ShadowCurseroypat
authored andcommitted
feat: specify readable ids for pci enable/disable fixture
Instead of ambiguous True/False use PCI/MMIO to better describe the underlying Firecracker device transport layer. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 3eab936 commit f90a95b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ def mem_size_mib():
588588
return 256
589589

590590

591-
@pytest.fixture(params=[True, False])
591+
@pytest.fixture(params=[True, False], ids=["PCI_ON", "PCI_OFF"])
592592
def pci_enabled(request):
593593
"""Fixture that allows configuring whether a microVM will have PCI enabled or not"""
594594
yield request.param

0 commit comments

Comments
 (0)