Initial Checks
Description
We have a lot of pragma: no cover in this test file:
|
class ServerTest(Server): # pragma: no cover |
Especially on the server itself, run_app, etc etc. indicating we're not correctly capturing the test coverage here.
Discussed with @maxisbey and this is likely due to Multiprocessing so we need to restructure tests here to not use MP
Example Code
Python & MCP Python SDK
Initial Checks
Description
We have a lot of
pragma: no coverin this test file:python-sdk/tests/shared/test_streamable_http.py
Line 123 in f54b18a
Especially on the server itself, run_app, etc etc. indicating we're not correctly capturing the test coverage here.
Discussed with @maxisbey and this is likely due to Multiprocessing so we need to restructure tests here to not use MP
Example Code
Python & MCP Python SDK