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.
This commit is contained in:
Brett Smith 2020-03-24 09:16:38 -04:00
parent f09f029fc4
commit d49173725a

3
pytest.ini Normal file
View file

@ -0,0 +1,3 @@
[pytest]
filterwarnings =
ignore::DeprecationWarning:^socks$