From a5c39a3409a795fb0709b952e15ac2746364358b Mon Sep 17 00:00:00 2001 From: andreasgeissler Date: Wed, 9 Sep 2020 18:01:12 +0200 Subject: Updated yaml-based instantiation and MultiCloud registry Correction for linter and updated run script Issue-ID: TEST-256 Signed-off-by: andreasgeissler Change-Id: Ia1f6f41f8fc6ed74c836ea7aa987f10487f377a6 --- src/onaptests/steps/onboard/vsp.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/onaptests/steps/onboard') diff --git a/src/onaptests/steps/onboard/vsp.py b/src/onaptests/steps/onboard/vsp.py index 75055de..50f1dfc 100644 --- a/src/onaptests/steps/onboard/vsp.py +++ b/src/onaptests/steps/onboard/vsp.py @@ -36,6 +36,15 @@ class VspOnboardStep(BaseStep): class YamlTemplateVspOnboardStep(YamlTemplateBaseStep): """Vsp onboard using YAML template step.""" + def __init__(self, cleanup=False): + """Initialize step. + + Substeps: + - VendorOnboardStep. + """ + super().__init__(cleanup=cleanup) + self.add_step(VendorOnboardStep(cleanup=cleanup)) + @property def yaml_template(self) -> dict: """YAML template. -- cgit 1.2.3-korg