Fix pep8 violations in base/run.py
authorThanh Ha <thanh.ha@linuxfoundation.org>
Mon, 16 Mar 2015 04:43:14 +0000 (00:43 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Tue, 17 Mar 2015 01:33:35 +0000 (21:33 -0400)
Change-Id: Ieda881623913dcf88c34af8dccfe53c966949414
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
test/tools/CSIT_Test/base/run.py

index 1a4dabc23b97075cc052aaf0bdeb36d0454b4c14..28aab41df124d8293eac25e5946fc37ae3c32a8d 100644 (file)
@@ -5,13 +5,14 @@ Authors: Baohua Yang@IBM, Denghui Huang@IBM
 Updated: 2013-11-07
 
 Usage: Before running the test tool, should
- 1. Start 2-layer tree topology network. e.g., in Mininet, run  'sudo mn --controller=remote,ip=127.0.0.1 --mac --topo tree,2'.
+ 1. Start 2-layer tree topology network. e.g., in Mininet, run
+    'sudo mn --controller=remote,ip=127.0.0.1 --mac --topo tree,2'.
  2. Configure gateway in the controller web GUI, name = 'gateway', subnet = '10.0.0.254/24'.
  3. In Mininet, run 'h1 ping h2' to make sure the network is connected.
 """
 import doctest
 import os
-from restlib import *
+from restlib import *  # noqa
 
 
 def test_module(module_name):
@@ -22,6 +23,7 @@ def test_module(module_name):
     cmd = 'python -m doctest ' + module_name + '.py'
     os.system(cmd)
 
+
 def run(modules=None):
     '''
     Run test cases according to the given modules.
@@ -41,6 +43,6 @@ if __name__ == '__main__':
     doctest.testmod()
     test_modules = ['switch_manager', 'topology_manager', 'forwarding_rule_manager', 'statistics_manager',
                     'host_tracker', 'arp_handler', 'forwarding_manager', 'container_manager']
-    #test_modules = ['topology_manager']
+    # test_modules = ['topology_manager']
     run(test_modules)
-    #run()
+    # run()