summaryrefslogtreecommitdiffstats
path: root/testcases/vIMS/CI/clearwater.py
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-01-06 17:09:51 +0100
committerboucherv <valentin.boucher@orange.com>2016-01-06 17:09:51 +0100
commitbfdf561e941f8fc4f925b026aace13989b5c3176 (patch)
treea2df6c78ae330c57f12f2fe9120484fc09782bb8 /testcases/vIMS/CI/clearwater.py
parentd5f9c2da17a62a5402d0990fe174a7f7b971d9e0 (diff)
Bugfix: cfy teardown -f
Change-Id: I8ced2251ad4cd1cb07c856ea79faf8458d051b33 Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases/vIMS/CI/clearwater.py')
-rw-r--r--testcases/vIMS/CI/clearwater.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/testcases/vIMS/CI/clearwater.py b/testcases/vIMS/CI/clearwater.py
index 0456cd231..d2d189f60 100644
--- a/testcases/vIMS/CI/clearwater.py
+++ b/testcases/vIMS/CI/clearwater.py
@@ -10,7 +10,9 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
########################################################################
-import sys, subprocess
+import sys
+import subprocess
+
class clearwater:
@@ -41,7 +43,8 @@ class clearwater:
def deploy_vnf(self, blueprint, bp_name='clearwater', dep_name='clearwater-opnfv'):
if self.orchestrator:
self.dep_name = dep_name
- self.orchestrator.download_upload_and_deploy_blueprint(blueprint, self.config, bp_name, dep_name)
+ self.orchestrator.download_upload_and_deploy_blueprint(
+ blueprint, self.config, bp_name, dep_name)
self.deploy = True
else:
if self.logger:
@@ -58,6 +61,3 @@ class clearwater:
else:
if self.logger:
logger.error("Cloudify manager is down or not provide...")
-
-
-