Update tox.ini to not run linters (#1916)

This commit is contained in:
Selwin Ong 2023-05-19 08:17:49 +07:00 committed by GitHub
parent 37ddcb51cd
commit ffacdcb675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

18
tox.ini
View File

@ -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