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