From d9988528c5d8a35fcc75488c9ea949d6baf09856 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 13 Oct 2023 12:18:28 -0300 Subject: [PATCH] Cleanup tox.ini Remove 'linting' environment because we now rely directly on pre-commit.ci for this validation. --- tox.ini | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tox.ini b/tox.ini index c94d84f0..c405e6c0 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] isolated_build = True -envlist = py36, py37, py38, py39, linting +envlist = py{38,39,310} [testenv] download=true @@ -14,10 +14,3 @@ deps= commands = inv cog --check pytest --basetemp={envtmpdir} --cov={envsitepackagesdir}/alfasim_sdk --cov=tests --cov-report=xml --color=yes {posargs} - - -[testenv:linting] -skip_install = True -basepython = python3.6 -deps = pre-commit>=1.11.0 -commands = pre-commit run --all-files --show-diff-on-failure