mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 03:00:22 +00:00
234fb6d479
- 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.
24 lines
422 B
INI
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}
|