diabets_app/server/tests/conftest.py

16 lines
204 B
Python

import pytest
import diabets_app
@pytest.fixture
def app():
app = diabets_app.app
app.debug = True
return app
@pytest.fixture
def client(app):
return app.test_client()