flask/tox.ini

34 lines
935 B
INI
Raw Normal View History

2013-05-19 00:27:49 +08:00
[tox]
2017-01-11 01:20:53 +08:00
envlist = {py26,py27,pypy}-{lowest,release,devel}{,-simplejson}, {py33,py34,py35,py36}-{release,devel}{,-simplejson}
2013-05-19 00:27:49 +08:00
[testenv]
2016-11-03 00:56:59 +08:00
passenv = LANG
usedevelop=true
2014-09-01 06:30:27 +08:00
commands =
2016-11-03 00:56:59 +08:00
# We need to install those after Flask is installed.
pip install -e examples/flaskr
pip install -e examples/minitwit
pip install -e examples/patterns/largerapp
pytest --cov=flask --cov-report html []
2014-09-01 06:00:20 +08:00
deps=
pytest
pytest-cov
2014-09-04 20:34:10 +08:00
greenlet
2014-09-01 06:30:27 +08:00
lowest: Werkzeug==0.7
2014-09-01 22:33:28 +08:00
lowest: Jinja2==2.4
2014-09-01 06:30:27 +08:00
lowest: itsdangerous==0.21
lowest: blinker==1.0
release: blinker
devel: git+https://github.com/pallets/werkzeug.git
devel: git+https://github.com/pallets/jinja.git
devel: git+https://github.com/pallets/itsdangerous.git
devel: git+https://github.com/jek/blinker.git
simplejson: simplejson
[testenv:docs]
deps = sphinx
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck