flask/tox.ini

63 lines
1.4 KiB
INI
Raw Normal View History

2013-05-19 00:27:49 +08:00
[tox]
envlist =
py{36,35,34,27,py}
py{36,27,py}-simplejson
py{36,27,py}-devel
py{36,27,py}-lowest
docs-html
coverage-report
2013-05-19 00:27:49 +08:00
[testenv]
2016-11-03 00:56:59 +08:00
passenv = LANG
deps =
pytest>=3
coverage
2014-09-04 20:34:10 +08:00
greenlet
blinker
2017-07-15 13:37:53 +08:00
python-dotenv
lowest: Werkzeug==0.14
2018-02-07 00:03:09 +08:00
lowest: Jinja2==2.10
lowest: itsdangerous==0.24
lowest: Click==5.1
devel: https://github.com/pallets/werkzeug/archive/master.tar.gz
devel: https://github.com/pallets/markupsafe/archive/master.tar.gz
devel: https://github.com/pallets/jinja/archive/master.tar.gz
devel: https://github.com/pallets/itsdangerous/archive/master.tar.gz
devel: https://github.com/pallets/click/archive/master.tar.gz
simplejson: simplejson
commands =
# the examples need to be installed to test successfully
2018-02-10 06:39:05 +08:00
pip install -e examples/tutorial -q
# pytest-cov doesn't seem to play nice with -p
coverage run -p -m pytest tests examples
[testenv:docs-html]
deps = sphinx
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
[testenv:docs-linkcheck]
deps = sphinx
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs {envtmpdir}/linkcheck
[testenv:coverage-report]
deps = coverage
skip_install = true
commands =
coverage combine
coverage report
coverage html
[testenv:codecov]
passenv = CI TRAVIS TRAVIS_*
deps = codecov
skip_install = true
commands =
coverage combine
coverage report
codecov