From 7810cfd63af3e1a26c802413d8c39a01c11281dc Mon Sep 17 00:00:00 2001 From: Istvan Ruzman Date: Thu, 24 Sep 2020 19:59:43 +0200 Subject: [PATCH] no real need for tox --- pyproject.toml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9ed3194..233f0e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Networking", @@ -72,20 +73,3 @@ use_parentheses = true [tool.pylint.messages_control] # black is taking care of this disable = "bad-continuation" - - -[tool.tox] -legacy_tox_ini = """ -[tox] -envlist = py37,py38,py39 -isolated_build = True -[testenv] -# whitelist_externals = poetry -deps = - poetry -commands = - poetry install -v - poetry run bandit -c bandit.yaml -r src/pyrad3 - poetry run pytest -n 8 --black --isort --pylint --mypy --flake8 --cov=pyrad3 -""" -