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()