From 788f218e267ad9e29df904c6c6a61e78bcc8e744 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 5 Jan 2019 20:44:34 -0800 Subject: [PATCH] Supress pytest warnings from 3rd party modules --- pytest.ini | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pytest.ini diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..92b08b4d --- /dev/null +++ b/pytest.ini @@ -0,0 +1,8 @@ +[pytest] +filterwarnings= + # https://github.com/pallets/jinja/issues/927 + ignore:Using or importing the ABCs::jinja2 + # https://bugs.launchpad.net/beautifulsoup/+bug/1778909 + ignore:Using or importing the ABCs::bs4.element + # Sanic verify_ssl=True + ignore:verify_ssl is deprecated::sanic