mirror of https://github.com/rq/rq.git
Update tox.ini to not run linters (#1916)
This commit is contained in:
parent
37ddcb51cd
commit
ffacdcb675
18
tox.ini
18
tox.ini
|
@ -1,5 +1,5 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist=lint,py36,py37,py38,py39,py310
|
envlist=py36,py37,py38,py39,py310
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
commands=pytest --cov rq --cov-config=.coveragerc --durations=5 {posargs}
|
commands=pytest --cov rq --cov-config=.coveragerc --durations=5 {posargs}
|
||||||
|
@ -12,14 +12,14 @@ deps=
|
||||||
passenv=
|
passenv=
|
||||||
RUN_SSL_TESTS
|
RUN_SSL_TESTS
|
||||||
|
|
||||||
[testenv:lint]
|
; [testenv:lint]
|
||||||
basepython = python3.10
|
; basepython = python3.10
|
||||||
deps =
|
; deps =
|
||||||
black
|
; black
|
||||||
ruff
|
; ruff
|
||||||
commands =
|
; commands =
|
||||||
black --check rq tests
|
; black --check rq tests
|
||||||
ruff check rq tests
|
; ruff check rq tests
|
||||||
|
|
||||||
[testenv:py36]
|
[testenv:py36]
|
||||||
skipdist = True
|
skipdist = True
|
||||||
|
|
Loading…
Reference in New Issue