From b8f23983d630e0b899d3eab21328ef1de99e7030 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 21 Jul 2023 02:58:55 +0200 Subject: [PATCH] Previous commit was the other way around ... the real key used by bash script is install_args, the one from toml is 'args' --- lib/parse_tests_toml.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/parse_tests_toml.py b/lib/parse_tests_toml.py index 9d42781..3713491 100644 --- a/lib/parse_tests_toml.py +++ b/lib/parse_tests_toml.py @@ -48,8 +48,8 @@ def generate_test_list_base(test_manifest, default_install_args, is_webapp, is_m yield test_suite_id, "upgrade", default_meta for commit, infos in test_suite.get("test_upgrade_from", {}).items(): infos["upgrade_name"] = infos.pop("name") - if "install_args" in infos: - infos["args"] = infos.pop("install_args") + if "args" in infos: + infos["install_args"] = infos.pop("args") upgrade_meta = copy.copy(default_meta) upgrade_meta.update(infos) yield test_suite_id, "upgrade." + commit, upgrade_meta