From 5a0e82c31cc01a6a5c8db03a28beef0a4de3a720 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 3 Sep 2024 12:20:08 -0700 Subject: [PATCH] infra: fix 0.3rc ci check (#25988) --- .github/scripts/check_diff.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/scripts/check_diff.py b/.github/scripts/check_diff.py index 6ba6d6221ca..7f3d2b48168 100644 --- a/.github/scripts/check_diff.py +++ b/.github/scripts/check_diff.py @@ -192,6 +192,9 @@ if __name__ == "__main__": # for extended testing found = False for dir_ in LANGCHAIN_DIRS: + if dir_ == "libs/core" and IGNORE_CORE_DEPENDENTS: + dirs_to_run["extended-test"].add(dir_) + continue if file.startswith(dir_): found = True if found: