diff --git a/python/qitest/conf.py b/python/qitest/conf.py index 4ff748152..6df58503c 100644 --- a/python/qitest/conf.py +++ b/python/qitest/conf.py @@ -41,13 +41,6 @@ def parse_tests(conf_path): res = list() with open(conf_path, "r") as fp: res = json.load(fp) - # Make sure environment is a dict string -> string - for test in res: - test_env = test.get("environment") - if test_env: - for key, value in test_env.items(): - del test_env[key] - test_env[key] = value return res diff --git a/python/qitoolchain/actions/make_package.py b/python/qitoolchain/actions/make_package.py index 5f7a1d84a..150bc15a8 100644 --- a/python/qitoolchain/actions/make_package.py +++ b/python/qitoolchain/actions/make_package.py @@ -69,6 +69,6 @@ def do(args): parts = [name, version, target] archive_name = "-".join(parts) + ".zip" output = os.path.join(output, archive_name) - res = qisys.archive.compress(input_directory, flat=True, output=output) + res = qisys.archive.compress(input_directory, flat=True, output=output, quiet=args.quiet) ui.info(ui.green, "Package generated in", res) return res