From 45861d7e7634261ac1f7f562b32f0d11f3bd0a42 Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Fri, 25 Oct 2024 14:01:35 +0200 Subject: [PATCH] Move pytest.ini into pyproject.toml --- pyproject.toml | 5 +++++ pytest.ini | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 pytest.ini diff --git a/pyproject.toml b/pyproject.toml index 16e7c3c3e..327bc7020 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,6 +72,11 @@ Repository = "https://github.com/FreeOpcUa/opcua-asyncio" [tool.hatch.build.targets.sdist] include = ["/asyncua"] +[tool.pytest.ini_options] +log_cli = false +log_level = "INFO" +testpaths = ["tests"] +asyncio_mode = "auto" [tool.ruff] line-length = 999 diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index 223ebf2ef..000000000 --- a/pytest.ini +++ /dev/null @@ -1,5 +0,0 @@ -[pytest] -log_cli=False -log_level=INFO -testpaths = tests -asyncio_mode = auto