From f3763cd679c24fcf7c7ee37e65f3bc5338f0b096 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 21 Oct 2023 16:22:13 +0300 Subject: [PATCH] Move build 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 fd9c05f9277..b84db07bdca 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 e560f9516b4..627788cd8b6 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