def app():
    return create_app()
Exemple #2
0
def app():
    app = create_app()
    yield app
    app.container.unwire()
Exemple #3
0
def app():
    Sanic.test_mode = True
    app = create_app()
    yield app
    app.ctx.container.unwire()