2013-01-23 21:57:44 +00:00
|
|
|
[tox]
|
2022-10-01 09:34:30 +00:00
|
|
|
envlist=py36,py37,py38,py39,py310,flake8
|
2013-01-23 21:57:44 +00:00
|
|
|
|
|
|
|
[testenv]
|
2019-01-22 00:39:43 +00:00
|
|
|
commands=pytest --cov rq --durations=5 {posargs}
|
2014-05-06 13:51:23 +00:00
|
|
|
deps=
|
|
|
|
pytest
|
2014-07-24 21:30:36 +00:00
|
|
|
pytest-cov
|
2022-10-01 09:34:30 +00:00
|
|
|
sentry-sdk
|
|
|
|
codecov
|
|
|
|
psutil
|
2013-01-23 21:57:44 +00:00
|
|
|
|
2014-09-08 18:29:12 +00:00
|
|
|
[testenv:flake8]
|
2019-01-22 00:39:43 +00:00
|
|
|
basepython = python3.6
|
2014-09-08 18:29:12 +00:00
|
|
|
deps =
|
|
|
|
flake8
|
|
|
|
commands =
|
2016-03-13 17:42:12 +00:00
|
|
|
flake8 rq tests
|
2022-10-01 09:34:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
[testenv:py36]
|
|
|
|
skipdist = True
|
|
|
|
basepython = python3.6
|
|
|
|
deps = {[testenv]deps}
|
|
|
|
|
|
|
|
[testenv:py37]
|
|
|
|
skipdist = True
|
|
|
|
basepython = python3.7
|
|
|
|
deps = {[testenv]deps}
|
|
|
|
|
|
|
|
[testenv:py38]
|
|
|
|
skipdist = True
|
|
|
|
basepython = python3.8
|
|
|
|
deps = {[testenv]deps}
|
|
|
|
|
|
|
|
[testenv:py39]
|
|
|
|
skipdist = True
|
|
|
|
basepython = python3.9
|
|
|
|
deps = {[testenv]deps}
|
|
|
|
|
|
|
|
[testenv:py310]
|
|
|
|
skipdist = True
|
|
|
|
basepython = python3.10
|
|
|
|
deps = {[testenv]deps}
|