From b0681205b7a60018c468a88456347d91dde3a9cc Mon Sep 17 00:00:00 2001 From: moomoohk Date: Thu, 24 Nov 2022 18:16:58 +0200 Subject: [PATCH] Enable DeprecationWarnings in tests --- tests/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e188ff3 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,3 @@ +import warnings + +warnings.simplefilter("always", DeprecationWarning)