From 5ffece5c033365baf4a3df52ffed5c6bfbed27ee Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Sun, 22 Mar 2026 20:39:55 -0400 Subject: [PATCH] chore(core): remove stale blockbuster allowlist for deleted context module (#36168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #29530 --- Remove a stale BlockBuster allowlist entry in `conftest.py` referencing `aconfig_with_context` — the function and its containing module (`langchain_core/beta/runnables/context.py`) were deleted in `fded6c6b1` (Sep 2025, #32850). Spotted by @antonio-mello-ai in #29530. --- libs/core/tests/unit_tests/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/libs/core/tests/unit_tests/conftest.py b/libs/core/tests/unit_tests/conftest.py index 06962b7f2e1..a2ffd40b86d 100644 --- a/libs/core/tests/unit_tests/conftest.py +++ b/libs/core/tests/unit_tests/conftest.py @@ -17,9 +17,6 @@ def blockbuster() -> Iterator[BlockBuster]: bb.functions[func] .can_block_in("langchain_core/_api/internal.py", "is_caller_internal") .can_block_in("langchain_core/runnables/base.py", "__repr__") - .can_block_in( - "langchain_core/beta/runnables/context.py", "aconfig_with_context" - ) ) for func in ["os.stat", "io.TextIOWrapper.read"]: