We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9737aec commit fd78d67Copy full SHA for fd78d67
hack/generate-e2e-test.py
@@ -35,7 +35,7 @@ def generate(self):
35
if os.path.isfile(yaml_file) is not True:
36
return
37
with open(yaml_file, 'r') as f:
38
- config = yaml.load(f.read())
+ config = yaml.safe_load(f.read())
39
print(config)
40
builder.set_reference_url(config['test']['reference'])
41
0 commit comments