Skip to content

Commit e833b5e

Browse files
authored
Arm backend: Move TOSA unittests to 1.0 (#11129)
### Summary Swtich to run the TOSA 1.0 unit tests by default. ### Test plan Internal and external CI unit tests. cc @digantdesai @freddan80 @zingo @oscarandersson8218 Signed-off-by: Per Åstrand <per.astrand@arm.com>
1 parent 3ad9419 commit e833b5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/arm/test/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def pytest_configure(config):
4444
if getattr(config.option, "fast_fvp", False):
4545
pytest._test_options["fast_fvp"] = config.option.fast_fvp # type: ignore[attr-defined]
4646

47-
pytest._test_options["tosa_version"] = "0.80" # type: ignore[attr-defined]
47+
pytest._test_options["tosa_version"] = "1.0" # type: ignore[attr-defined]
4848
if config.option.arm_run_tosa_version:
4949
pytest._test_options["tosa_version"] = config.option.arm_run_tosa_version
5050

@@ -81,7 +81,7 @@ def try_addoption(*args, **kwargs):
8181
nargs="+",
8282
help="List of two files. Firstly .pt file. Secondly .json",
8383
)
84-
try_addoption("--arm_run_tosa_version", action="store", default="0.80")
84+
try_addoption("--arm_run_tosa_version", action="store", default="1.0")
8585

8686

8787
def pytest_sessionstart(session):

0 commit comments

Comments
 (0)