flask/tox.ini

33 lines
884 B
INI
Raw Normal View History

2013-05-18 18:27:49 +02:00
[tox]
envlist = {py26,py27,pypy}-{lowest,release,devel}{,-simplejson}, {py33,py34,py35}-{release,devel}{,-simplejson}
2013-05-18 18:27:49 +02:00
[testenv]
2016-11-02 17:56:59 +01:00
passenv = LANG
usedevelop=true
2014-09-01 00:30:27 +02:00
commands =
2016-11-02 17:56:59 +01:00
# We need to install those after Flask is installed.
pip install -e examples/flaskr
pip install -e examples/minitwit
py.test --cov=flask --cov-report html []
2014-09-01 00:00:20 +02:00
deps=
pytest
pytest-cov
2014-09-04 14:34:10 +02:00
greenlet
2014-09-01 00:30:27 +02:00
lowest: Werkzeug==0.7
2014-09-01 16:33:28 +02:00
lowest: Jinja2==2.4
2014-09-01 00:30:27 +02: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