--- tests/test_datastructures.py.orig 2021-05-11 07:09:47.475789063 +0000
+++ tests/test_datastructures.py 2021-05-11 07:10:04.505789063 +0000
@@ -1235,6 +1235,7 @@
for name in ("fileno", "writable", "readable", "seekable"):
assert hasattr(file_storage, name)
+ @pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
def test_save_to_pathlib_dst(self, tmp_path):
src = tmp_path / "src.txt"
src.write_text(u"test")
--- tests/test_formparser.py.orig 2021-05-11 07:09:58.941789063 +0000
+++ tests/test_formparser.py 2021-05-11 07:10:04.505789063 +0000
@@ -239,7 +239,7 @@
stream, _, _ = parser.parse_from_environ({"wsgi.input": ""})
assert stream is not None
-
+@pytest.mark.filterwarnings("ignore::pytest.PytestUnraisableExceptionWarning")
class TestMultiPart(object):
def test_basic(self):
resources = join(dirname(__file__), "multipart")