summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/misc_methods.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automation/regression/misc_methods.py')
-rwxr-xr-xscripts/automation/regression/misc_methods.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/automation/regression/misc_methods.py b/scripts/automation/regression/misc_methods.py
index 99071f81..d879b038 100755
--- a/scripts/automation/regression/misc_methods.py
+++ b/scripts/automation/regression/misc_methods.py
@@ -128,7 +128,7 @@ def load_complete_config_file (filepath):
try:
with open(filepath, 'r') as f:
- config = yaml.load(f)
+ config = yaml.safe_load(f)
# Handle TRex configuration
trex_config['trex_name'] = config["trex"]["hostname"]
@@ -176,7 +176,7 @@ def load_complete_config_file (filepath):
def load_object_config_file (filepath):
try:
with open(filepath, 'r') as f:
- config = yaml.load(f)
+ config = yaml.safe_load(f)
return config
except Exception as inst:
print("\nBad configuration file provided: '{0}'\n".format(filepath))
@@ -229,7 +229,7 @@ def load_benchmark_config_file (filepath):
try:
with open(filepath, 'r') as f:
- benchmark_config = yaml.load(f)
+ benchmark_config = yaml.safe_load(f)
except Exception as inst:
print("\nBad configuration file provided: '{0}'\n".format(filepath))