1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
[tox]
isolated_build = True
envlist=py39,py310,py311,py312,py313
[testenv]
commands=pytest --cov rq --cov-config=.coveragerc --durations=5 {posargs}
deps=
codecov
psutil
pytest
pytest-cov
passenv=
RUN_SSL_TESTS
; [testenv:lint]
; basepython = python3.10
; deps =
; ruff
; commands =
; ruff check rq tests
[testenv:py39]
skipdist = True
basepython = python3.9
deps = {[testenv]deps}
[testenv:py310]
skipdist = True
basepython = python3.10
deps = {[testenv]deps}
[testenv:py311]
skipdist = True
basepython = python3.11
deps = {[testenv]deps}
[testenv:py312]
skipdist = True
basepython = python3.12
deps = {[testenv]deps}
[testenv:py313]
skipdist = True
basepython = python3.13
deps = {[testenv]deps}
[testenv:ssl]
skipdist = True
basepython = python3.10
deps=
pytest
psutil
passenv=
RUN_SSL_TESTS
commands=pytest -m ssl_test {posargs}
[pytest]
filterwarnings = ignore::pytest.PytestUnhandledThreadExceptionWarning
|