summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mgr/tox.ini7
1 files changed, 5 insertions, 2 deletions
diff --git a/mgr/tox.ini b/mgr/tox.ini
index de86105..c8b743d 100644
--- a/mgr/tox.ini
+++ b/mgr/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27,pep8
+envlist = py27,pep8,cov
skipsdist = true
[tox:jenkins]
@@ -18,4 +18,7 @@ commands = flake8
[testenv:py27]
commands =
- {[testenv]commands} \ No newline at end of file
+ {[testenv]commands}
+
+[testenv:cov]
+commands = coverage html --omit="*test_*,*__init__.py,*site-packages*" -d htmlcov \ No newline at end of file