sprockets.http/tox.ini
Andrew Rabert 234fb6d479 Support only tornado>=5.0
- Drop support for all versions of tornado prior to 5.0. This negates
the need for version-aware conditionals that previous existed.
- Update tox to test Tornado 5.0 and the unpinned latest version.
2018-11-26 19:03:37 -05:00

24 lines
422 B
INI

[tox]
envlist = py35,py36,py37,tornado,tornado50
indexserver =
default = https://pypi.python.org/simple
toxworkdir = build/tox
skip_missing_interpreters = True
use_develop = True
[testenv]
commands =
nosetests -v
deps =
-rrequires/testing.txt
[testenv:tornado]
commands =
{envbindir}/pip install tornado
{[testenv]commands}
[testenv:tornado50]
commands =
{envbindir}/pip install tornado=5.0
{[testenv]commands}