From 5e60b7eaeb671fb07be2518e210bce04fbf9c6d4 Mon Sep 17 00:00:00 2001 From: Caspar Broekhuizen Date: Mon, 6 Oct 2025 11:53:37 -0700 Subject: [PATCH] fix(langgraph): add missing context var check --- libs/langgraph/tests/test_interruption.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/langgraph/tests/test_interruption.py b/libs/langgraph/tests/test_interruption.py index 9fbeab77a..4bd30124d 100644 --- a/libs/langgraph/tests/test_interruption.py +++ b/libs/langgraph/tests/test_interruption.py @@ -171,6 +171,7 @@ def test_interrupt_with_send_payloads(sync_checkpointer: BaseCheckpointSaver) -> assert node_counter["map_node"] == 5 +@NEEDS_CONTEXTVARS async def test_interrupt_with_send_payloads_async( async_checkpointer: BaseCheckpointSaver, durability: Durability ) -> None: