skovhjemmeside/app/tests/conftest.py
2024-08-10 20:26:57 +02:00

15 lines
225 B
Python

import pytest
from app.app import create_app
@pytest.fixture
def app():
app = create_app('testing')
app.config.update({"TESTING": True})
yield app
@pytest.fixture
def client(app):
return app.test_client()