aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/preload
diff options
context:
space:
mode:
authorLovett, Trevor <trevor.lovett@att.com>2019-10-29 11:33:26 -0500
committerLovett, Trevor (tl2972) <tl2972@att.com>2019-10-29 11:42:43 -0500
commitd87106650286493af38cecd423b58bdcead15db4 (patch)
tree08637ba59b5bdccfcfada2d0f2a1d97f2c8097e4 /ice_validator/preload
parentb3a5befeb0d5d9e348b1ba7b29f412b15544a0ec (diff)
[VVP] Make Preload Generation more reslient to failures
Ensure that errors during preload do not prevent validation report creation Issue-ID: VVP-335 Signed-off-by: Lovett, Trevor <trevor.lovett@att.com> Change-Id: I0cfd411b6a034422e349b96c462e68a4f0ceb876
Diffstat (limited to 'ice_validator/preload')
-rw-r--r--ice_validator/preload/model.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ice_validator/preload/model.py b/ice_validator/preload/model.py
index db60438..3ca7bda 100644
--- a/ice_validator/preload/model.py
+++ b/ice_validator/preload/model.py
@@ -251,7 +251,8 @@ def env_path(heat_path):
:return: path to env file (assumes it is present and named correctly)
"""
base_path = os.path.splitext(heat_path)[0]
- return "{}.env".format(base_path)
+ env_path = "{}.env".format(base_path)
+ return env_path if os.path.exists(env_path) else None
class VnfModule(FilterBaseOutputs):