mirror of
https://github.com/sprockets/sprockets-statsd.git
synced 2024-11-15 03:00:25 +00:00
f8c63a55fc
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.
19 lines
263 B
INI
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]
|