native toml config for tox

This commit is contained in:
Mathieu Dupuy 2024-10-07 10:45:17 +02:00
parent 6e103b9c7e
commit 2c15b1b8f4
No known key found for this signature in database
GPG key ID: 08C1D4F32506B23A

View file

@ -50,34 +50,31 @@ requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[tool.tox]
legacy_tox_ini = """
[tox:tox]
min_version = 4.0
envlist = py, flake8, isort, mypy
min_version = "4.0"
envlist = ["py", "flake8", "isort", "mypy"]
[testenv]
extras =
test
deps =
pytest
pytest-cov
commands = pytest -r s --cov --cov-report=term --cov-report=xml .
[tool.tox.env.py]
extras = ["test"]
deps = [
"pytest",
"pytest-cov"
]
commands = [["pytest", "-r", "s", "--cov", "--cov-report=term", "--cov-report=xml", "."]]
[testenv:flake8]
deps = flake8==7.1.0
commands = flake8 .
skip_install = True
[tool.tox.env.flake8]
deps = ["flake8==7.1.0"]
commands = [["flake8", "."]]
skip_install = true
[testenv:isort]
deps = isort==5.13.2
commands = isort --check --diff .
skip_install = True
[tool.tox.env.isort]
deps = ["isort==5.13.2"]
commands = [["isort", "--check", "--diff", "."]]
skip_install = true
[testenv:mypy]
deps = mypy==1.11.0
commands = mypy .
skip_install = True
"""
[tool.tox.env.mypy]
deps = ["mypy==1.11.0"]
commands = [["mypy", "."]]
skip_install = true
[tool.setuptools]