summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@gmail.com>2013-07-05 18:16:10 -0400
committerDoug Hellmann <doug.hellmann@gmail.com>2013-07-05 18:16:10 -0400
commit2646549a6c76090b0db2f29f994ccacce964fc81 (patch)
tree5e11f112ecb21dac678393fa8a6d2c968ebc5101 /tox.ini
parent22d32f60d3481b89a366fcf3416992618cb5a9e3 (diff)
downloadcliff-tablib-2646549a6c76090b0db2f29f994ccacce964fc81.tar.gz
Remove the use of distribute
Just use setuptools for installation to avoid conflicts with old versions of distribute. Also change from pep8 to flake8 for style checking. Signed-off-by: Doug Hellmann <doug.hellmann@gmail.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 10 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index 470439d..f58c9cc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,13 +1,18 @@
[tox]
-envlist = py27,py32,pep8
+envlist = py27,py32,style
+#py33 -- fails with slots error
[testenv]
commands = nosetests -d --with-coverage --cover-inclusive --cover-package clifftablib []
-deps =
+deps =
nose
mock
coverage
-[testenv:pep8]
-deps = pep8
-commands = pep8 --repeat --ignore=E501 --ignore=E123 --show-source clifftablib
+[testenv:style]
+deps = flake8
+commands = flake8 clifftablib
+
+[flake8]
+ignore = E501,E123
+show-source = true