fastmcp/tests/experimental/openapi_parser/conftest.py
2025-08-10 21:55:17 -04:00

11 lines
277 B
Python

"""Shared fixtures for openapi_new utilities tests."""
import pytest
from fastmcp.utilities.tests import temporary_settings
@pytest.fixture(autouse=True)
def use_new_openapi_parser():
with temporary_settings(experimental__enable_new_openapi_parser=True):
yield