summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2013-05-05 11:52:40 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2013-05-05 11:52:40 -0400
commit8040e7617bbb9e26786fc123aa52690c61753611 (patch)
tree3df72a2a8094728a2b19d19a171160075097d9b7 /tox.ini
parentd05bcea552ffd479bcb9c2ea42d15f4d1de1c915 (diff)
downloadstevedore-8040e7617bbb9e26786fc123aa52690c61753611.tar.gz
flake8 fixes
Minor style changes to make flake8 pass. Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 68c3314..c72e118 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,py32,py33,pep8
+envlist = py26,py27,py32,py33,style
[testenv]
commands = nosetests -d --with-coverage --cover-inclusive --cover-package stevedore []
@@ -8,6 +8,6 @@ deps =
mock
coverage
-[testenv:pep8]
-deps = pep8
-commands = pep8 --repeat --ignore=E123 --show-source stevedore setup.py
+[testenv:style]
+deps = flake8
+commands = flake8 stevedore setup.py