aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/instantiate/sdnc_service.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/steps/instantiate/sdnc_service.py')
-rw-r--r--src/onaptests/steps/instantiate/sdnc_service.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/onaptests/steps/instantiate/sdnc_service.py b/src/onaptests/steps/instantiate/sdnc_service.py
index 9dce7e9..7896d98 100644
--- a/src/onaptests/steps/instantiate/sdnc_service.py
+++ b/src/onaptests/steps/instantiate/sdnc_service.py
@@ -327,7 +327,8 @@ class TestSdncStep(BaseScenarioStep):
- GetSdncPreloadStep
"""
super().__init__(cleanup=BaseStep.HAS_NO_CLEANUP)
- self.add_step(CheckSdncDbStep())
+ if settings.IN_CLUSTER:
+ self.add_step(CheckSdncDbStep())
self.add_step(CheckSdncHealthStep())
if full:
self.add_step(UpdateSdncService())