Fix code style issues for specificed path 31/33231/3
authoryuyang <Gabriel.yuyang@huawei.com>
Tue, 11 Apr 2017 06:47:07 +0000 (14:47 +0800)
committeryuyang <Gabriel.yuyang@huawei.com>
Tue, 11 Apr 2017 08:14:27 +0000 (16:14 +0800)
JIRA: BOTTLENECK-100

Fix code syle issues for the path flake8 specified before flake8
check merged into CI pipeline.

Change-Id: Iee59bada206fafd4740023e90d08a4b4a7a030db
Signed-off-by: yuyang <Gabriel.yuyang@huawei.com>
docker/Dockerfile
requirements/requirements.txt [moved from requirements.txt with 100% similarity]
requirements/verify.txt [new file with mode: 0644]
utils/infra_setup/runner/stack.py

index fc3451b..69e1d65 100644 (file)
@@ -50,5 +50,5 @@ RUN git clone -b $BRANCH https://gerrit.opnfv.org/gerrit/bottlenecks ${BOTTLENEC
 RUN git clone https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR}
 
 RUN easy_install pytz
-RUN pip install -r ${REPOS_DIR}/bottlenecks/requirements.txt
+RUN pip install -r ${REPOS_DIR}/bottlenecks/requirements/requirements.txt
 RUN pip install -U /home/opnfv/bottlenecks
diff --git a/requirements/verify.txt b/requirements/verify.txt
new file mode 100644 (file)
index 0000000..e8d51f4
--- /dev/null
@@ -0,0 +1,10 @@
+##############################################################################
+# Copyright (c) 2016 Huawei Tech. and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+##############################################################################
+
+flake8==3.0.4
\ No newline at end of file
index fb78c36..c3fa00a 100644 (file)
@@ -12,13 +12,20 @@ a template is use to create a stack in openstack.
 This file will be amended in the furture.'''
 
 import utils.infra_setup.heat.template as Heat
+import os
+import sys
+import utils.parser as Parser
+
 
 class stack_api():
 
-    def from_config_template(stack_info):
+    def __init__(self):
+        pass
+
+    def from_config_template(self, stack_info):
         stack_name = stack_info['name']
         ext_gw_net = os.environ.get("EXTERNAL_NETWORK")
-        heat_parser = HeatTemplate_Parser()
+        heat_parser = Parser.HeatTemplate_Parser()
         heat_parser.add_security_group(stack_name)
         heat_parser.add_keypair(stack_name)
         for network in stack_info['networks']:
@@ -58,4 +65,3 @@ class stack_api():
             if server.floating_ip:
                 server.public_ip = \
                     self.stack.outputs[server.floating_ip["stack_name"]]
-