aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/core/testcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/benchmark/core/testcase.py')
-rw-r--r--yardstick/benchmark/core/testcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/benchmark/core/testcase.py b/yardstick/benchmark/core/testcase.py
index 7b23b73aa..7ab1b08cf 100644
--- a/yardstick/benchmark/core/testcase.py
+++ b/yardstick/benchmark/core/testcase.py
@@ -69,7 +69,7 @@ class Testcase(object):
def _parse_testcase(self, testcase_info):
rendered_testcase = TaskTemplate.render(testcase_info)
- testcase_cfg = yaml.load(rendered_testcase)
+ testcase_cfg = yaml.safe_load(rendered_testcase)
test_precondition = testcase_cfg.get('precondition', {})
installer_type = test_precondition.get('installer_type', 'all')