mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
563 B
31 lines
563 B
[tox] |
|
envlist = py27,py33,py34,py35,report,check |
|
|
|
[testenv] |
|
commands = py.test --cov sigal --cov-report term-missing |
|
deps = |
|
pytest |
|
pytest-capturelog |
|
pytest-cov |
|
|
|
[testenv:report] |
|
basepython = python3.5 |
|
commands = |
|
coverage combine |
|
coverage report |
|
usedevelop = true |
|
deps = coverage |
|
|
|
[testenv:check] |
|
basepython = python3.5 |
|
deps = |
|
docutils |
|
check-manifest |
|
flake8 |
|
collective.checkdocs |
|
pygments |
|
usedevelop = true |
|
commands = |
|
python setup.py checkdocs |
|
python setup.py check --strict --metadata |
|
check-manifest {toxinidir}
|
|
|