fix pytest 7 warnings

This commit is contained in:
David Lord 2022-02-08 12:05:17 -08:00
parent 6f7d99ce4b
commit 426a1e25b7
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
2 changed files with 16 additions and 4 deletions

View file

@ -1,3 +1,5 @@
import warnings
import pytest
import flask
@ -81,7 +83,10 @@ def test_proper_test_request_context(app):
)
# suppress Werkzeug 0.15 warning about name mismatch
with pytest.warns(None):
with warnings.catch_warnings():
warnings.filterwarnings(
"ignore", "Current server name", UserWarning, "flask.app"
)
with app.test_request_context(
"/", environ_overrides={"HTTP_HOST": "localhost"}
):