infra: also run lint/test on rc (#25992)

This commit is contained in:
Erick Friis
2024-09-03 14:02:49 -07:00
committed by GitHub
parent ae5a574aa5
commit 29413a22e1

View File

@@ -97,8 +97,7 @@ def add_dependents(dirs_to_eval: Set[str], dependents: dict) -> List[str]:
for dir_ in dirs_to_eval:
# handle core manually because it has so many dependents
if "core" in dir_:
if not IGNORE_CORE_DEPENDENTS:
updated.add(dir_)
updated.add(dir_)
continue
pkg = "langchain-" + dir_.split("/")[-1]
updated.update(dependents[pkg])