From a7a86e8f1ffc2bc5a9753b9c741c9fcf98f1fef4 Mon Sep 17 00:00:00 2001 From: Todd Strader Date: Thu, 19 Oct 2023 08:52:50 -0400 Subject: [PATCH] Update Makefile Ignore attrs warning --- tests/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index f32d13b1..0c12bc6b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -27,7 +27,8 @@ # Do not fail on DeprecationWarning caused by virtualenv, which might come from # the distutils or site modules. -export PYTHONWARNINGS = error,ignore::DeprecationWarning:distutils,ignore::DeprecationWarning:site +# Do not fail on DeprecationWarning caused by attrs dropping 3.6 support +export PYTHONWARNINGS = error,ignore::DeprecationWarning:distutils,ignore::DeprecationWarning:site,ignore::DeprecationWarning:attr REGRESSIONS := $(shell ls test_cases/)