Skip to content

Commit bbfec3b

Browse files
small updates
1 parent adcfaed commit bbfec3b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/client_runner.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""
22
Launch one of the example_clients in a fresh subprocess and return STDOUT.
3-
This avoids Mando’s global sub-parser registration conflicts.
43
"""
54
from __future__ import annotations
65
import asyncio, os, sys, subprocess, textwrap

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
• http_local – streamable HTTP on :8000
66
• sse_local – SSE app on :8000 (same port; we stop the HTTP one first)
77
• stdio_local – client boots its own server
8-
• remote – hits your Heroku app if MCP_SERVER_URL & API_KEY are set
8+
• remote – hits your Heroku app (either streamable http or SSE) if MCP_SERVER_URL & API_KEY are set
99
"""
1010

1111
from __future__ import annotations
@@ -21,8 +21,8 @@
2121
ROOT = Path(__file__).resolve().parents[1]
2222
PY = sys.executable
2323
API_KEY = os.getenv("API_KEY", "local-test-key")
24-
PORT = 8000 # ⬅️ matches your hand-rolled examples
25-
WAIT = 15 # seconds
24+
PORT = 8000
25+
WAIT = 25 # seconds
2626

2727

2828
# ---------------------------------------------------------------- helpers

0 commit comments

Comments
 (0)