From d49173725a7b8dd7be6ad90127091212d55df9c5 2020-03-24 13:16:38 From: Brett Smith Date: 2020-03-24 13:16:38 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. --- diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000000000000000000000000000000000000..0e58f9947c2ac39d4a3eab66dcac9479c12e570b --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +[pytest] +filterwarnings = + ignore::DeprecationWarning:^socks$