diff options
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/prepare_env.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ci/prepare_env.py b/ci/prepare_env.py index 3a9e52ba5..2dc9e3ab4 100755 --- a/ci/prepare_env.py +++ b/ci/prepare_env.py @@ -50,8 +50,7 @@ CONFIG_FUNCTEST_PATH = os.environ["CONFIG_FUNCTEST_YAML"] CONFIG_PATCH_PATH = os.path.join(os.path.dirname( CONFIG_FUNCTEST_PATH), "config_patch.yaml") -with open(CONFIG_FUNCTEST_PATH) as f: - functest_yaml = yaml.safe_load(f) +functest_yaml = ft_utils.get_functest_yaml() with open(CONFIG_PATCH_PATH) as f: functest_patch_yaml = yaml.safe_load(f) |