summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorRick van Hattem <wolph@wol.ph>2015-01-13 10:08:16 +0100
committerRick van Hattem <wolph@wol.ph>2015-01-13 10:08:16 +0100
commitfedce174130d54a962df04dbb9d1dd54d0c7bf16 (patch)
tree524fd012683771071d38bf2b314557993690eff4 /tox.ini
parentd7c4f2ed2847c1472c0e60f20e25db20e60dc7d7 (diff)
downloadsix-git-fedce174130d54a962df04dbb9d1dd54d0c7bf16.tar.gz
added flake8 for pep8 and pyflakes support
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 7 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index b29b31a..09131f8 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,15 @@
[tox]
-envlist=py25,py26,py27,py31,py32,py33,py34,pypy
+envlist=py25,py26,py27,py31,py32,py33,py34,pypy,flake8
indexserver=
default = http://pypi.python.org/simple
testrun = http://pypi.testrun.org
[testenv]
-deps=pytest
+deps= pytest
commands= py.test -rfsxX {posargs}
-[pytest]
-minversion=2.2.0
+[testenv:flake8]
+basepython=python
+deps=flake8
+commands= flake8 six.py
+