Skip to content
Closed
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
2 changes: 1 addition & 1 deletion backends/arm/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def pytest_configure(config):
pytest._test_options = {} # type: ignore[attr-defined]
pytest._test_options["corstone_fvp"] = False # type: ignore[attr-defined]

if config.option.arm_run_corstoneFVP:
if getattr(config.option, "arm_run_corstoneFVP", False) and config.option.arm_run_corstoneFVP:
corstone300_exists = shutil.which("FVP_Corstone_SSE-300_Ethos-U55")
corstone320_exists = shutil.which("FVP_Corstone_SSE-320")
if not (corstone300_exists and corstone320_exists):
Expand Down
Loading