Move tools config from setup.cfg to pyproject.toml

This commit is contained in:
Hugo van Kemenade 2023-10-21 16:23:40 +03:00
parent d05ff5059f
commit 73c2eb460d
2 changed files with 7 additions and 7 deletions

View File

@ -6,3 +6,10 @@ requires = [
backend-path = [
"_custom_build",
]
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "-ra --color=yes"
testpaths = ["Tests"]

View File

@ -65,10 +65,3 @@ tests =
[flake8]
extend-ignore = E203
max-line-length = 88
[isort]
profile = black
[tool:pytest]
addopts = -ra --color=yes
testpaths = Tests