From d49173725a7b8dd7be6ad90127091212d55df9c5 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Tue, 24 Mar 2020 09:16:38 -0400 Subject: [PATCH] tests: Ignore the DeprecationWarning from the socks module. The socks package in Debian buster does a deprecated import from the collections module. That's not directly relevant to our own code (Conservancy has no business requirement for SOCKS support) so ignore it. --- pytest.ini | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..0e58f99 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +filterwarnings = + ignore::DeprecationWarning:^socks$