summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkgconfig.py2
-rw-r--r--setup.py8
-rw-r--r--tox.ini1
3 files changed, 6 insertions, 5 deletions
diff --git a/pkgconfig.py b/pkgconfig.py
index 2895ceb..9434e3a 100644
--- a/pkgconfig.py
+++ b/pkgconfig.py
@@ -3,6 +3,6 @@
from gluster.swift import _pkginfo as pkginfo
-PKGCONFIG='pkgconfig.in'
+PKGCONFIG = 'pkgconfig.in'
pkginfo.save_config(PKGCONFIG)
diff --git a/setup.py b/setup.py
index 0fb757d..4d26888 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ setup(
'Programming Language :: Python :: 2'
'Programming Language :: Python :: 2.6'
'Programming Language :: Python :: 2.7'
- ],
+ ],
install_requires=[],
scripts=[
'bin/gluster-swift-gen-builders',
@@ -55,6 +55,6 @@ setup(
'object=gluster.swift.obj.server:app_factory',
'container=gluster.swift.container.server:app_factory',
'account=gluster.swift.account.server:app_factory',
- ],
- },
- )
+ ],
+ },
+)
diff --git a/tox.ini b/tox.ini
index 22b28eb..f81069a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -27,6 +27,7 @@ commands = bash tools/functional_tests.sh
[testenv:pep8]
changedir = {toxinidir}
commands =
+ flake8
flake8 gluster test
[testenv:cover]