Renamed setup script to avoid confusion (https://github.com/BeehiveInnovations/zen-mcp-server/issues/35)
Further fixes to tests Pass O3 simulation test when keys are not set, along with a notice Updated docs on testing, simulation tests / contributing Support for OpenAI o4-mini and o4-mini-high
This commit is contained in:
@@ -85,8 +85,10 @@ def mock_provider_availability(request, monkeypatch):
|
||||
the tools don't require model selection unless explicitly testing auto mode.
|
||||
"""
|
||||
# Skip this fixture for tests that need real providers
|
||||
if hasattr(request, "node") and request.node.get_closest_marker("no_mock_provider"):
|
||||
return
|
||||
if hasattr(request, "node"):
|
||||
marker = request.node.get_closest_marker("no_mock_provider")
|
||||
if marker:
|
||||
return
|
||||
|
||||
from unittest.mock import MagicMock
|
||||
|
||||
|
||||
Reference in New Issue
Block a user