From 2a791542d8db992610269488ab6f9841de343d19 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Wed, 18 Oct 2023 11:01:32 -0700 Subject: [PATCH] Configure ``filterwarnings=error`` for ``pytest`` (#74) --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 2e10349..72c4b4e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,3 +5,7 @@ versionfile_source = partd/_version.py versionfile_build = partd/_version.py tag_prefix = parentdir_prefix = partd- + +[tool:pytest] +addopts = --strict-markers --strict-config +filterwarnings = error