We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf0d9e commit 3b77dadCopy full SHA for 3b77dad
backends/arm/test/conftest.py
@@ -32,7 +32,7 @@ def pytest_configure(config):
32
pytest._test_options = {} # type: ignore[attr-defined]
33
pytest._test_options["corstone_fvp"] = False # type: ignore[attr-defined]
34
35
- if config.option.arm_run_corstoneFVP:
+ if getattr(config.option, "arm_run_corstoneFVP", False) and config.option.arm_run_corstoneFVP:
36
corstone300_exists = shutil.which("FVP_Corstone_SSE-300_Ethos-U55")
37
corstone320_exists = shutil.which("FVP_Corstone_SSE-320")
38
if not (corstone300_exists and corstone320_exists):
0 commit comments