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 54dbf0a commit 3afa58cCopy full SHA for 3afa58c
backends/arm/test/conftest.py
@@ -32,7 +32,10 @@ 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 (
36
+ getattr(config.option, "arm_run_corstoneFVP", False)
37
+ and config.option.arm_run_corstoneFVP
38
+ ):
39
corstone300_exists = shutil.which("FVP_Corstone_SSE-300_Ethos-U55")
40
corstone320_exists = shutil.which("FVP_Corstone_SSE-320")
41
if not (corstone300_exists and corstone320_exists):
0 commit comments