aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests_e2e/test_e2e.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests_e2e/test_e2e.py b/tests_e2e/test_e2e.py
index 37a1833..c164901 100644
--- a/tests_e2e/test_e2e.py
+++ b/tests_e2e/test_e2e.py
@@ -237,13 +237,13 @@ def get_all_commands_combinations(
ExecutionConfiguration.from_dict(exec_info) for exec_info in executions
)
- parser = get_args_parser()
for exec_config in exec_configs:
for command_combination in exec_config.all_combinations:
+ parser = get_args_parser()
args = parser.parse_args(command_combination)
- model_name = Path(args.model).stem
+
yield {
- "model_name": model_name,
+ "model_name": Path(args.model).stem,
"command_combination": command_combination,
}