mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
231891706b
Tested by merging into #14627
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
import json
|
|
import sys
|
|
|
|
LANGCHAIN_DIRS = {
|
|
"libs/core",
|
|
"libs/langchain",
|
|
"libs/experimental",
|
|
"libs/community",
|
|
}
|
|
|
|
if __name__ == "__main__":
|
|
files = sys.argv[1:]
|
|
dirs_to_run = set()
|
|
|
|
for file in files:
|
|
if any(
|
|
file.startswith(dir_)
|
|
for dir_ in (
|
|
".github/workflows",
|
|
".github/tools",
|
|
".github/actions",
|
|
"libs/core",
|
|
".github/scripts/check_diff.py",
|
|
)
|
|
):
|
|
dirs_to_run.update(LANGCHAIN_DIRS)
|
|
elif "libs/community" in file:
|
|
dirs_to_run.update(
|
|
("libs/community", "libs/langchain", "libs/experimental")
|
|
)
|
|
elif "libs/partners" in file:
|
|
partner_dir = file.split("/")[2]
|
|
dirs_to_run.update(
|
|
(f"libs/partners/{partner_dir}", "libs/langchain", "libs/experimental")
|
|
)
|
|
elif "libs/langchain" in file:
|
|
dirs_to_run.update(("libs/langchain", "libs/experimental"))
|
|
elif "libs/experimental" in file:
|
|
dirs_to_run.add("libs/experimental")
|
|
elif file.startswith("libs/"):
|
|
dirs_to_run.update(LANGCHAIN_DIRS)
|
|
else:
|
|
pass
|
|
print(json.dumps(list(dirs_to_run)))
|