sprockets.http/tox.ini
Dave Shawley 9430941e4a Use asyncio.all_tasks if it exists.
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.
2020-07-18 08:50:20 -04:00

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}