aboutsummaryrefslogtreecommitdiff
path: root/app/tests/conftest.py
blob: 38420913491743c35430f4270f495e1547f7a901 (plain)
1
2
3
4
5
6
7
8
9
10
11
import pytest

from app import app as flask_app

@pytest.fixture
def app():
	yield flask_app

@pytest.fixture
def client(app):
    return app.test_client()