Skip to content
Snippets Groups Projects
Commit 08366d35 authored by ulif's avatar ulif
Browse files

Add tox conf for coverage.

parent c954d300
No related branches found
No related tags found
Loading
[tox]
envlist = flake8, pypy, py26, py27, py32, py33, py34
envlist = flake8, pypy, py26, py27, py32, py33, py34, coverage
[testenv]
recreate=True
......@@ -10,3 +10,10 @@ commands=python setup.py dev
[testenv:flake8]
deps=flake8
commands=flake8 diceware tests setup.py
[testenv:coverage]
deps=coverage
commands=
coverage erase
coverage run setup.py test
coverage report --include='diceware*' --fail-under=100
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment