11 lines
145 B
Python
11 lines
145 B
Python
|
import pytest
|
||
|
|
||
|
from app.run import app as tapp
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='session')
|
||
|
def app(request):
|
||
|
ctx = tapp.app_context()
|
||
|
ctx.push()
|
||
|
|