Skip to content

Commit

Permalink
test core dependents
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Sep 28, 2024
1 parent d4ac184 commit 175b8b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/scripts/check_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# in order to be able to get CI to pass for each individual
# package that depends on core
# e.g. if you touch core, we don't then add textsplitters/etc to CI
IGNORE_CORE_DEPENDENTS = True
IGNORE_CORE_DEPENDENTS = False

# ignored partners are removed from dependents
# but still run if directly edited
Expand Down Expand Up @@ -120,13 +120,13 @@ def _get_configs_for_single_dir(job: str, dir_: str) -> List[Dict[str, str]]:
elif dir_ in ["libs/community", "libs/langchain"] and job == "extended-tests":
# community extended test resolution in 3.12 is slow
# even in uv
py_versions = ["3.9", "3.11"]
py_versions = ["3.9", "3.11", "3.13.0-rc.2"]

elif dir_ == "libs/community" and job == "compile-integration-tests":
# community integration deps are slow in 3.12
py_versions = ["3.9", "3.11"]
py_versions = ["3.9", "3.11", "3.13.0-rc.2"]
else:
py_versions = ["3.9", "3.12"]
py_versions = ["3.9", "3.12", "3.13.0-rc.2"]

return [{"working-directory": dir_, "python-version": py_v} for py_v in py_versions]

Expand Down

0 comments on commit 175b8b7

Please sign in to comment.