From 73c2eb460d6f2ff323f5d62abdfa42c8d4747aba Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 21 Oct 2023 16:23:40 +0300 Subject: [PATCH] Move tools config from setup.cfg to pyproject.toml --- pyproject.toml | 7 +++++++ setup.cfg | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) 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