Skip to content

Arm backend: Move TOSA unittests to 1.0 #11129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2025
Merged
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
4 changes: 2 additions & 2 deletions backends/arm/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def pytest_configure(config):
if getattr(config.option, "fast_fvp", False):
pytest._test_options["fast_fvp"] = config.option.fast_fvp # type: ignore[attr-defined]

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

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


def pytest_sessionstart(session):
Expand Down
Loading