From 5a7c765490b866351f92fb8d33e3865941dad04d Mon Sep 17 00:00:00 2001 From: Thomas Decaux Date: Wed, 5 Jan 2022 13:37:06 +0100 Subject: [PATCH] [tests] fix yaml load warning (#1522) --- helpers/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/helpers.py b/helpers/helpers.py index 4cc96756e..36d9aead4 100644 --- a/helpers/helpers.py +++ b/helpers/helpers.py @@ -10,7 +10,7 @@ def helm_template(config): with open(temp.name, "w") as values: values.write(config) helm_cmd = "helm template release-name -f {0} ./".format(temp.name) - result = yaml.load_all(check_output(helm_cmd.split())) + result = yaml.load_all(check_output(helm_cmd.split()), Loader=yaml.FullLoader) results = {} for r in result: