From 528cdf808fbb7c363c697fc24b00c1b7cad2ae3b Mon Sep 17 00:00:00 2001 From: tim-s-ccs Date: Fri, 13 Dec 2024 13:59:48 +0000 Subject: [PATCH] Remove `tests/__init__.py` and move pytest config into `pyproject.toml` --- pyproject.toml | 3 ++- tests/__init__.py | 0 2 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 tests/__init__.py diff --git a/pyproject.toml b/pyproject.toml index 1e3be3a..facd2c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,4 +43,5 @@ version = {attr = "dmapiclient.__version__"} "dmapiclient" = ["py.typed"] [tool.pytest.ini_options] -addopts = "--cov=dmapiclient" +addopts = "-p no:logging --cov=dmapiclient" +testpaths = "tests" diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index e69de29..0000000