summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 6 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 12cf8e32..606bcf62 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
-envlist = py27,pep8
+envlist = py27
[testenv]
basepython=python2
@@ -20,6 +20,11 @@ setenv =
deps = flake8
commands = flake8 {toxinidir}
+[testenv:py27-cover]
+commands = python setup.py testr --coverage \
+ --omit='{toxinidir}/dovetail/tests*' \
+ --testr-args='{posargs}'
+
[flake8]
show-source = True
ignore = E123,E125,H803