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.
llama_inputs
1 parent 1a187c4 commit f50b590Copy full SHA for f50b590
backends/arm/test/conftest.py
@@ -44,7 +44,10 @@ def pytest_configure(config):
44
)
45
# Only enable if we also have the TOSA reference model available.
46
pytest._test_options["corstone_fvp"] = True # type: ignore[attr-defined]
47
- pytest._test_options["llama_inputs"] = config.option.llama_inputs # type: ignore[attr-defined]
+
48
+ if getattr(config.option, "llama_inputs", False) and config.option.llama_inputs:
49
+ pytest._test_options["llama_inputs"] = config.option.llama_inputs # type: ignore[attr-defined]
50
51
pytest._test_options["fast_fvp"] = False # type: ignore[attr-defined]
52
if getattr(config.option, "fast_fvp", False):
53
pytest._test_options["fast_fvp"] = config.option.fast_fvp # type: ignore[attr-defined]
0 commit comments