teufa/tests/conftest.py

10 lines
114 B
Python
Raw Normal View History

2024-05-17 21:58:13 -06:00
import pytest
from teufa.app import create_app
@pytest.fixture
def app():
app = create_app()
yield app