diff options
author | Thierry Hardy <thierry.hardy@orange.com> | 2020-10-02 16:18:17 +0200 |
---|---|---|
committer | Thierry Hardy <thierry.hardy@orange.com> | 2020-10-08 15:47:00 +0200 |
commit | 0123c525b0182a5d6f9cd1bee3830eb1956239c7 (patch) | |
tree | 2ba5a5b7ae88e53aa634cabd113338b42d49c8d0 /src/onaptests/steps/instantiate/service_ala_carte.py | |
parent | d1d44781c7d03c8794dd626184f77d9836264212 (diff) |
Create basic_cnf test leveraging onapsdk
Add the scenario basic_cnf that uses multicloud-k8s plugin to instantiate cnf on k8s
Add the removal of profile in cleanup part
Add store_state
Issue-ID: TEST-243
Signed-off-by: Thierry Hardy <thierry.hardy@orange.com>
Change-Id: Ib743c259decf95cdc69975e1ef7d4ba7aadccfae
Diffstat (limited to 'src/onaptests/steps/instantiate/service_ala_carte.py')
-rw-r--r-- | src/onaptests/steps/instantiate/service_ala_carte.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/steps/instantiate/service_ala_carte.py b/src/onaptests/steps/instantiate/service_ala_carte.py index b3b56c4..80473b7 100644 --- a/src/onaptests/steps/instantiate/service_ala_carte.py +++ b/src/onaptests/steps/instantiate/service_ala_carte.py @@ -219,7 +219,6 @@ class YamlTemplateServiceAlaCarteInstantiateStep(YamlTemplateBaseStep): Exception: Service cleaning failed """ - super().cleanup() service_deletion = self._service_instance.delete() nb_try = 0 nb_try_max = 30 @@ -232,3 +231,4 @@ class YamlTemplateServiceAlaCarteInstantiateStep(YamlTemplateBaseStep): else: self._logger.error("Service deletion %s failed", self._service_instance_name) raise Exception("Service cleanup failed") + super().cleanup() |