mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
49 lines
1.0 KiB
Python
49 lines
1.0 KiB
Python
import os
|
|
|
|
os.environ["CONFIG"] = os.path.abspath(
|
|
os.path.join(os.path.dirname(os.path.dirname(__file__)), "tests/test.env")
|
|
)
|
|
|
|
|
|
# use in-memory database
|
|
# need to set before importing any other module as DB_URI is init at import time
|
|
os.environ["DB_URI"] = "sqlite://"
|
|
|
|
import pytest
|
|
|
|
from app.extensions import db
|
|
from server import create_app
|
|
|
|
|
|
@pytest.fixture
|
|
def flask_app():
|
|
app = create_app()
|
|
|
|
# use in-memory database
|
|
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite://"
|
|
app.config["TESTING"] = True
|
|
app.config["WTF_CSRF_ENABLED"] = False
|
|
app.config["SERVER_NAME"] = "sl.test"
|
|
|
|
with app.app_context():
|
|
db.create_all()
|
|
|
|
yield app
|
|
|
|
|
|
@pytest.fixture
|
|
def flask_client():
|
|
app = create_app()
|
|
|
|
# use in-memory database
|
|
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite://"
|
|
app.config["TESTING"] = True
|
|
app.config["WTF_CSRF_ENABLED"] = False
|
|
app.config["SERVER_NAME"] = "sl.test"
|
|
|
|
client = app.test_client()
|
|
|
|
with app.app_context():
|
|
db.create_all()
|
|
yield client
|