From 0864548b3bb4fdbf3bb4ffacb151cfaf33c07545 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Mon, 12 Aug 2024 10:47:45 +0200 Subject: [PATCH] chore: PP309: Filter warnings specified Apply repo-review suggestion PP309: filterwarnings must be set (probably to at least ["error"]). Python will hide important warnings otherwise, like deprecations. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8ae784f15ec..818500bf072 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -199,6 +199,7 @@ markers = [ ] log_cli_level = "INFO" xfail_strict = true +filterwarnings = ["error"] [tool.coverage.report]