mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 19:29:28 +00:00
9430941e4a
Python 3.9 removed ``asyncio.Task.all_tasks`` so I switched to using ``asyncio.all_tasks`` instead. The ``all_tasks`` function was added in 3.7 and ``Task.all_tasks`` was deprecated then.
24 lines
433 B
INI
24 lines
433 B
INI
[tox]
|
|
envlist = py35,py36,py37,py38,py39,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}
|