sprockets-statsd/tox.ini
Dave Shawley f8c63a55fc
Switch to asynctest for Py 3.7 support.
Decided to switch the tests to using asynctest so that we can guarantee
support on Python 3.7 and newer.  Also added pins in setup.cfg and a
tox.ini file if you want to use it.
2021-03-10 06:46:17 -05:00

19 lines
263 B
INI

[tox]
envlist = lint,py37,py39,tornado5
toxworkdir = ./build/tox
[testenv]
deps =
.[dev]
commands =
python -m unittest
[testenv:lint]
commands =
flake8 sprockets_statsd tests
yapf -dr sprockets_statsd tests
[testenv:tornado5]
deps =
tornado>=5,<6
.[dev]