Skip uv-sync hook in CI when no pyproject.toml files changed - #63779
Closed
ShubhamGondane wants to merge 2 commits into
Closed
Skip uv-sync hook in CI when no pyproject.toml files changed#63779ShubhamGondane wants to merge 2 commits into
ShubhamGondane wants to merge 2 commits into
Conversation
ShubhamGondane
requested review from
amoghrajesh,
ashb,
bugraoz93,
choo121600,
ephraimbuddy,
gopidesupavan,
jason810496,
jedcunningham,
jscheffl and
potiuk
as code owners
March 17, 2026 05:35
ShubhamGondane
marked this pull request as draft
March 17, 2026 05:39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
uv-syncprek hook added in #63754 runsuv syncduring CI static checks. When run with--all-files, it tries to build all dependencies includinggssapi==1.11.1, which requireskrb5-confignot always present on CI runners. This causes flaky static check failures for PRs that don't touch anypyproject.tomlfiles.This adds
uv-syncto the selective checks skip list when nopyproject.tomlfiles changed, following the same pattern used forcheck-provider-yaml-valid.related: #63754