From e4447eb88191773d7a10f7cb5eb7768d2c203979 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:23:41 +0100 Subject: [PATCH 1/6] Apply Repo-Review rule PP304 pytest: Sets the log level --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 006e021..ce8436f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,7 @@ dev = [ [tool.pytest.ini_options] addopts = "-v --doctest-modules --ignore=benchmark --doctest-glob=README.md" +log_level = "INFO" [tool.ruff] line-length = 99 From bd089c7c4a3bfd492767316f46f8099119e19c42 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:24:55 +0100 Subject: [PATCH 2/6] Apply Repo-Review rule PP305 pytest: Specifies strict xfail --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ce8436f..a4552be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,7 @@ dev = [ [tool.pytest.ini_options] addopts = "-v --doctest-modules --ignore=benchmark --doctest-glob=README.md" log_level = "INFO" +xfail_strict = true [tool.ruff] line-length = 99 From 06357b72435c7130644e66169ac9e8f47e222312 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:26:14 +0100 Subject: [PATCH 3/6] Apply Repo-Review rule PP306 pytest: Specifies strict config --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a4552be..53b79f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dev = [ ] [tool.pytest.ini_options] -addopts = "-v --doctest-modules --ignore=benchmark --doctest-glob=README.md" +addopts = ["-v", "--strict-config", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] log_level = "INFO" xfail_strict = true From 7eaa0682e8c146b643da072c764752fb880f4279 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:26:58 +0100 Subject: [PATCH 4/6] Apply Repo-Review rule PP307 pytest: Specifies strict markers --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 53b79f4..58a2785 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dev = [ ] [tool.pytest.ini_options] -addopts = ["-v", "--strict-config", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] +addopts = ["-v", "--strict-config", "--strict-markers", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] log_level = "INFO" xfail_strict = true From f06729e73c968219567667c4a9bd04cc6e77f0ad Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:29:57 +0100 Subject: [PATCH 5/6] Apply Repo-Review rule PP308 pytest: Specifies useful summary --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 58a2785..21690ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dev = [ ] [tool.pytest.ini_options] -addopts = ["-v", "--strict-config", "--strict-markers", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] +addopts = ["-v", "-ra", "--strict-config", "--strict-markers", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] log_level = "INFO" xfail_strict = true From ea884beb85c2dbc6d9d8d747bfd5619874365207 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 10 Mar 2026 22:30:43 +0100 Subject: [PATCH 6/6] Apply Repo-Review rule PP309 pytest: Filter warnings specified --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 21690ec..9f450a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,7 @@ dev = [ [tool.pytest.ini_options] addopts = ["-v", "-ra", "--strict-config", "--strict-markers", "--doctest-modules", "--ignore=benchmark", "--doctest-glob=README.md"] +filterwarnings = ["error"] log_level = "INFO" xfail_strict = true