import pytest from opik_backend import create_app @pytest.fixture() def app(): app = create_app(should_init_executor=False) app.config.update({ "TESTING": True, }) # other setup can go here yield app # clean up / reset resources here @pytest.fixture() def client(app): return app.test_client() @pytest.fixture() def runner(app): return app.test_cli_runner()