Skip to content

Instantly share code, notes, and snippets.

View yeboah326's full-sized avatar
🤓
Geeking around

Gideon Yeboah Asante yeboah326

🤓
Geeking around
View GitHub Profile
@yeboah326
yeboah326 / conftest.py
Created January 4, 2022 22:40
Configuration files for testing flask application
import pytest
from api import create_app, db
@pytest.fixture
def app():
flask_app = create_app()
flask_app.app_context().push()
yield flask_app