aboutsummaryrefslogtreecommitdiff
path: root/tests_e2e
diff options
context:
space:
mode:
authorAnnie Tallund <annie.tallund@arm.com>2022-12-14 15:55:19 +0100
committerBenjamin Klimczak <benjamin.klimczak@arm.com>2023-02-08 15:17:12 +0000
commit09ecc5c8acb758e8def33155feb746a34dd7b560 (patch)
tree65c39a7f7929b745b9c5a31ab48bb4c6e97cb3ea /tests_e2e
parent6fbcffb4ee039438a409fbc92e38fa5d1d118833 (diff)
downloadmlia-09ecc5c8acb758e8def33155feb746a34dd7b560.tar.gz
MLIA-590 Support path to custom target profiles
- Start using TOML format for target profile - Add support for loading custom target profile files Change-Id: I6be019d4341e93115440ccdbdb6dafdc1c85b966
Diffstat (limited to 'tests_e2e')
-rw-r--r--tests_e2e/test_e2e.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests_e2e/test_e2e.py b/tests_e2e/test_e2e.py
index 4de640b..546bd7e 100644
--- a/tests_e2e/test_e2e.py
+++ b/tests_e2e/test_e2e.py
@@ -24,7 +24,7 @@ from mlia.cli.config import get_available_backends
from mlia.cli.main import get_commands
from mlia.cli.main import get_possible_command_names
from mlia.cli.main import init_parser
-from mlia.utils.filesystem import get_supported_profile_names
+from mlia.utils.filesystem import get_builtin_supported_profile_names
from mlia.utils.types import is_list_of
@@ -175,7 +175,7 @@ def resolve(params: list[str]) -> Generator[list[str], None, None]:
if prev == "--target-profile" and param == "*":
resolved = (
replace_element(params, idx, profile)
- for profile in get_supported_profile_names()
+ for profile in get_builtin_supported_profile_names()
)
elif param.startswith("e2e_config") and (
filenames := glob.glob(f"{Path.cwd()}/{param}", recursive=True)