Files
odapi/tests/conftest.py
2020-05-03 00:45:45 +02:00

11 lines
219 B
Python

from app import app as test_app
from pytest import fixture
from secrets import token_bytes
@fixture
def app():
test_app.config["TESTING"] = True
test_app.config["WTF_CSRF_ENABLED"] = False
return test_app