forked from orbit-oss/flask
* Update CHANGES * Update CONTRIBUTING.rst * Update setup.py * Update tox.ini * Update extensions.rst * Update security.rst * Update installation.rst * Update testing.rst * Update upgrading.rst * Update sidebarintro.html * Update jquery.rst * Update dbcon.rst * Update index.rst
25 lines
636 B
INI
25 lines
636 B
INI
[tox]
|
|
envlist = {py26,py27,pypy}-{lowest,release,devel}, {py33,py34,py35}-{release,devel}
|
|
|
|
[testenv]
|
|
commands =
|
|
py.test []
|
|
|
|
deps=
|
|
pytest
|
|
greenlet
|
|
redbaron
|
|
|
|
lowest: Werkzeug==0.7
|
|
lowest: Jinja2==2.4
|
|
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
|
|
|
|
[testenv:docs]
|
|
deps = sphinx
|
|
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|