import sys import pytest from app.app import create_app from app.main import get_args @pytest.fixture() def app(): sys.argv = [''] app = create_app(get_args()) yield app @pytest.fixture() def client(app): return app.test_client()