diff --git a/pyproject.toml b/pyproject.toml index fd9c05f92..b84db07bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,3 +6,10 @@ requires = [ backend-path = [ "_custom_build", ] + +[tool.isort] +profile = "black" + +[tool.pytest.ini_options] +addopts = "-ra --color=yes" +testpaths = ["Tests"] diff --git a/setup.cfg b/setup.cfg index e560f9516..627788cd8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -65,10 +65,3 @@ tests = [flake8] extend-ignore = E203 max-line-length = 88 - -[isort] -profile = black - -[tool:pytest] -addopts = -ra --color=yes -testpaths = Tests