From 6e228f8a9c8c937223915776409d92a7bb002aa7 Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Wed, 15 Jan 2025 11:32:42 -0800 Subject: [PATCH] Lint --- libs/langgraph/tests/test_pregel_async.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/langgraph/tests/test_pregel_async.py b/libs/langgraph/tests/test_pregel_async.py index e15b77c78..427ee4041 100644 --- a/libs/langgraph/tests/test_pregel_async.py +++ b/libs/langgraph/tests/test_pregel_async.py @@ -6695,6 +6695,10 @@ async def test_multiple_updates() -> None: ] +@pytest.mark.skipif( + sys.version_info < (3, 11), + reason="Python 3.11+ is required for async contextvars support", +) async def test_falsy_return_from_task() -> None: """Test with a falsy return from a task.""" checkpointer = MemorySaver()