Pierre Mourlanne

Results 2 comments of Pierre Mourlanne

@jgb https://github.com/pytest-dev/pytest-django/pull/397 was developed for your exact use case back in the day :) It is outdated now :zoidberg:

I got something working, thanks to http://alexmic.net/flask-sqlalchemy-pytest/ Here's my code: ```python import os import pytest from myapp import create_app, db as _db @pytest.fixture(scope='session') def app(): app = create_app() app.config.from_object('test_settings') return...