aboutsummaryrefslogtreecommitdiff
path: root/tests_e2e/test_e2e.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests_e2e/test_e2e.py')
-rw-r--r--tests_e2e/test_e2e.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/tests_e2e/test_e2e.py b/tests_e2e/test_e2e.py
index 26f5d29..35fd707 100644
--- a/tests_e2e/test_e2e.py
+++ b/tests_e2e/test_e2e.py
@@ -218,11 +218,16 @@ def get_all_commands_combinations(executions: Any) -> Generator[list[str], None,
ExecutionConfiguration.from_dict(exec_info) for exec_info in executions
)
- return (
- command_combination
- for exec_config in exec_configs
- for command_combination in exec_config.all_combinations
- )
+ parser = get_args_parser()
+ for exec_config in exec_configs:
+ for command_combination in exec_config.all_combinations:
+ for idx, param in enumerate(command_combination):
+ if "{model_name}" in param:
+ args = parser.parse_args(command_combination)
+ model_name = Path(args.model).stem
+ param = param.replace("{model_name}", model_name)
+ command_combination[idx] = param
+ yield command_combination
def check_args(args: list[str], no_skip: bool) -> None: