diff --git a/libs/cli/tests/unit_tests/conftest.py b/libs/cli/tests/unit_tests/conftest.py index 5caaa6c81..fb075a041 100644 --- a/libs/cli/tests/unit_tests/conftest.py +++ b/libs/cli/tests/unit_tests/conftest.py @@ -12,5 +12,5 @@ def disable_analytics_env() -> None: if "LANGGRAPH_CLI_NO_ANALYTICS" in os.environ: print("⚠️ LANGGRAPH_CLI_NO_ANALYTICS is set. Overriding it for the test.") - with patch.dict(os.environ, {"LANGGRAPH_CLI_NO_ANALYTICS": "0"}): + with patch.dict(os.environ, {"LANGGRAPH_CLI_NO_ANALYTICS": "1"}): yield diff --git a/libs/cli/uv.lock b/libs/cli/uv.lock index 64c03484c..ce0ec1763 100644 --- a/libs/cli/uv.lock +++ b/libs/cli/uv.lock @@ -19,16 +19,16 @@ wheels = [ [[package]] name = "anyio" -version = "4.13.0" +version = "4.14.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "idna" }, { name = "typing-extensions", marker = "python_full_version < '3.13'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/19/14/2c5dd9f512b66549ae92767a9c7b330ae88e1932ca57876909410251fe13/anyio-4.13.0.tar.gz", hash = "sha256:334b70e641fd2221c1505b3890c69882fe4a2df910cba14d97019b90b24439dc", size = 231622, upload-time = "2026-03-24T12:59:09.671Z" } +sdist = { url = "https://files.pythonhosted.org/packages/61/cc/a381afa6efea9f496eff839d4a6a1aed3bfafc7b3ab4b0d1b243a12573dd/anyio-4.14.2.tar.gz", hash = "sha256:cfa139f3ed1a23ee8f88a145ddb5ac7605b8bbfd8592baacd7ce3d8bb4313c7f", size = 260176, upload-time = "2026-07-12T20:29:07.082Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/da/42/e921fccf5015463e32a3cf6ee7f980a6ed0f395ceeaa45060b61d86486c2/anyio-4.13.0-py3-none-any.whl", hash = "sha256:08b310f9e24a9594186fd75b4f73f4a4152069e3853f1ed8bfbf58369f4ad708", size = 114353, upload-time = "2026-03-24T12:59:08.246Z" }, + { url = "https://files.pythonhosted.org/packages/da/35/f2287558c17e29fafc8ef3daf819bb9834061cfa43bff8014f7df7f63bdc/anyio-4.14.2-py3-none-any.whl", hash = "sha256:9f505dda5ac9f0c8309b5e8bd445a8c2bf7246f3ce950121e45ea15bc41d1494", size = 125813, upload-time = "2026-07-12T20:29:05.763Z" }, ] [[package]] diff --git a/libs/sdk-py/tests/streaming/test_sync_extensions_projection.py b/libs/sdk-py/tests/streaming/test_sync_extensions_projection.py index 926dc0a5d..12e7b3d97 100644 --- a/libs/sdk-py/tests/streaming/test_sync_extensions_projection.py +++ b/libs/sdk-py/tests/streaming/test_sync_extensions_projection.py @@ -29,7 +29,10 @@ def test_sync_extension_projection_yields_matching_custom_payloads(): {"name": "progress", "step": 1}, {"name": "progress", "step": 2}, ] - assert "custom:progress" in fake.stream_request_bodies[-1]["channels"] + assert any( + "custom:progress" in body.get("channels", []) + for body in fake.stream_request_bodies + ) def test_sync_extension_projection_supports_namespace_scope_on_subgraph_handle():