From c5e2d7852a4da0035fb0ec410bb1051c85db5d36 Mon Sep 17 00:00:00 2001 From: alstonlo <40709307+alstonlo@users.noreply.github.com> Date: Sat, 13 Jul 2024 06:15:52 -0400 Subject: [PATCH] Update tox.ini --- tox.ini | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) 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, - -