Browse Source

Fix typos

ijl 11 years ago
parent
commit
8b66fc5fc0
3 changed files with 5 additions and 7 deletions
  1. 1 1
      pyramid/benchmark_config
  2. 3 5
      pyramid/setup.py
  3. 1 1
      pyramid/setup_benchmark.py

+ 1 - 1
pyramid/benchmark_config

@@ -23,7 +23,7 @@
       "display_name": "pyramid-py2",
       "display_name": "pyramid-py2",
       "notes": "",
       "notes": "",
       "versus": "wsgi"
       "versus": "wsgi"
-    }
+    },
     "py3": {
     "py3": {
       "setup_file": "setup_benchmark",
       "setup_file": "setup_benchmark",
       "json_url": "/json",
       "json_url": "/json",

+ 3 - 5
pyramid/setup.py

@@ -1,5 +1,3 @@
-import os
-
 from setuptools import setup, find_packages
 from setuptools import setup, find_packages
 
 
 requires = [
 requires = [
@@ -8,11 +6,11 @@ requires = [
     'psycopg2',
     'psycopg2',
     'sqlalchemy',
     'sqlalchemy',
     'gunicorn'
     'gunicorn'
-    ]
+]
 
 
 tests_require = [
 tests_require = [
-  'nose-cov',
-  'webtest'
+    'nose-cov',
+    'webtest'
 ]
 ]
 
 
 setup(name='frameworkbenchmarks',
 setup(name='frameworkbenchmarks',

+ 1 - 1
pyramid/setup_benchmark.py

@@ -23,7 +23,7 @@ def start(args):
         '-b', "0.0.0.0:6543",
         '-b', "0.0.0.0:6543",
         '-w', str(NCPU*3)],
         '-w', str(NCPU*3)],
         cwd='pyramid'
         cwd='pyramid'
-    ])
+    )
     return 0
     return 0
 
 
 def stop():
 def stop():