atst/tests/conftest.py
2018-06-11 16:42:13 -04:00

10 lines
142 B
Python

import pytest
from atst.app import make_app, make_config
@pytest.fixture
def app():
config = make_config()
return make_app(config)