mirror of
https://github.com/sprockets/sprockets.mixins.correlation.git
synced 2024-11-23 11:19:53 +00:00
Add testing against various Tornado versions.
This commit is contained in:
parent
9e59113a15
commit
16ace6cc93
1 changed files with 16 additions and 1 deletions
17
tox.ini
17
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py27,py33,py34,pypy,pypy3
|
envlist = py27,py33,py34,pypy,pypy3,tornado31,tornado32,tornado40
|
||||||
toxworkdir = {toxinidir}/build/tox
|
toxworkdir = {toxinidir}/build/tox
|
||||||
skip_missing_intepreters = true
|
skip_missing_intepreters = true
|
||||||
|
|
||||||
|
@ -13,3 +13,18 @@ commands = {envbindir}/nosetests
|
||||||
deps =
|
deps =
|
||||||
{[testenv]deps}
|
{[testenv]deps}
|
||||||
mock
|
mock
|
||||||
|
|
||||||
|
[testenv:tornado31]
|
||||||
|
deps =
|
||||||
|
-rtest-requirements.txt
|
||||||
|
tornado>=3.1,<3.2
|
||||||
|
|
||||||
|
[testenv:tornado32]
|
||||||
|
deps =
|
||||||
|
-rtest-requirements.txt
|
||||||
|
tornado>=3.2,<3.3
|
||||||
|
|
||||||
|
[testenv:tornado40]
|
||||||
|
deps =
|
||||||
|
-rtest-requirements.txt
|
||||||
|
tornado>=4.0,<4.1
|
||||||
|
|
Loading…
Reference in a new issue