def test_client(): """Flask app test client""" app.testing = True with app.test_client() as client: yield client app.testing = False