diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-07-05 10:45:05 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-07-05 14:41:55 +0000 |
commit | 7fbd9f67fa43997bc8b030ab24dcc4315493c1b1 (patch) | |
tree | 73defcf7b5fcdc82134b10e74198115b464337d6 /src/onaptests/steps | |
parent | 7cbad7912c0d14cbc06f7491ae77222b4feb23ed (diff) |
[TEST] Basic macro stability scenario
Issue-ID: TEST-349
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I951e9720668de9bf00136d4e043c9fe8950061f1
Diffstat (limited to 'src/onaptests/steps')
-rw-r--r-- | src/onaptests/steps/onboard/vf.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/onaptests/steps/onboard/vf.py b/src/onaptests/steps/onboard/vf.py index 7e4882e..76aaf2e 100644 --- a/src/onaptests/steps/onboard/vf.py +++ b/src/onaptests/steps/onboard/vf.py @@ -1,3 +1,5 @@ +from pathlib import Path +import sys import time from onapsdk.configuration import settings @@ -94,11 +96,14 @@ class YamlTemplateVfOnboardStep(YamlTemplateBaseStep): "vnf_artifact_label", "vnf_artifact_file_path"]]): vf.create() + artifact_file_path: Path = Path(vnf["vnf_artifact_file_path"]) + if not artifact_file_path.exists(): + artifact_file_path = Path(sys.path[-1], artifact_file_path) vf.add_deployment_artifact( artifact_type=vnf["vnf_artifact_type"], artifact_name=vnf["vnf_artifact_name"], artifact_label=vnf["vnf_artifact_label"], - artifact=vnf["vnf_artifact_file_path"] + artifact=str(artifact_file_path) ) time.sleep(10) vf.onboard() |