mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-09-01 12:03:19 +02:00
Co-authored-by: Jeremiah Lowin <jlowin@users.noreply.github.com> Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>
11 lines
277 B
Python
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
|