diff --git a/tox.ini b/tox.ini index 5fa84ca..e007fc2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37,py38,py39,py310,lint +envlist = py37,py38,py39,py310 requires = tox-conda [testenv] @@ -14,29 +14,3 @@ conda_deps = conda_channels = conda-forge commands = pytest --basetemp="{envtmpdir}" {posargs} - -[testenv:lint] -basepython = python3 -skip_install = true -conda_deps = flake8 -commands = flake8 . - -[flake8] -extend-ignore = E127 -exclude = - __pycache__, - .git, - .eggs, - .github, - .tox, - docs/source/conf.py, - build, - dist, - *.pyc, - *.egg-info, - .cache, - original_code_from_paper, - Lib, - Scripts, - -