teufa/tests/conftest.py
2024-05-17 21:58:13 -06:00

10 lines
114 B
Python

import pytest
from teufa.app import create_app
@pytest.fixture
def app():
app = create_app()
yield app