Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit b7e7c6f

Browse files
jmlrtebuildy
andauthored
[tests] fix yaml load warning (#1522) (#1534)
Co-authored-by: Thomas Decaux <[email protected]>
1 parent 2f6c384 commit b7e7c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helpers/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def helm_template(config):
1010
with open(temp.name, "w") as values:
1111
values.write(config)
1212
helm_cmd = "helm template release-name -f {0} ./".format(temp.name)
13-
result = yaml.load_all(check_output(helm_cmd.split()))
13+
result = yaml.load_all(check_output(helm_cmd.split()), Loader=yaml.FullLoader)
1414

1515
results = {}
1616
for r in result:

0 commit comments

Comments
 (0)