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]
|
||||
envlist=lint,py36,py37,py38,py39,py310
|
||||
envlist=py36,py37,py38,py39,py310
|
||||
|
||||
[testenv]
|
||||
commands=pytest --cov rq --cov-config=.coveragerc --durations=5 {posargs}
|
||||
|
@ -12,14 +12,14 @@ deps=
|
|||
passenv=
|
||||
RUN_SSL_TESTS
|
||||
|
||||
[testenv:lint]
|
||||
basepython = python3.10
|
||||
deps =
|
||||
black
|
||||
ruff
|
||||
commands =
|
||||
black --check rq tests
|
||||
ruff check rq tests
|
||||
; [testenv:lint]
|
||||
; basepython = python3.10
|
||||
; deps =
|
||||
; black
|
||||
; ruff
|
||||
; commands =
|
||||
; black --check rq tests
|
||||
; ruff check rq tests
|
||||
|
||||
[testenv:py36]
|
||||
skipdist = True
|
||||
|
|
Loading…
Reference in New Issue