feat(gittest): add read_gitstate(repo_path) -> GitState (TICKET-054) - #62
Merged
Conversation
New fleet/gittest.py (stdlib only) exposes the git-side work-in-flight signal for a project repo: unmerged build* branches and unpushed commits on main. read_gitstate never raises (missing path / non-repo / no main / any git failure -> GitState((), 0)). Hermetic tests in tests/test_gittest.py build real git repos in tmp_path (git init -b main + bare origin). Closes TICKET-054.
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.
Summary
Adds the git-side work-in-flight signal for a project repo:
fleet/gittest.pyexposingread_gitstate(repo_path) -> GitState.GitState(frozen dataclass):unmerged_build_branches(sorted localbuild*branches with >= 1 commit not reachable frommain) andunpushed_commits(commits onmainnot onorigin/main/ its upstream).read_gitstatenever raises: missing path, non-repo dir, nomainbranch, or any git failure ->GitState((), 0).git -C {repo} ...(stdlib only, no CWD /~/AIdependency).tests/test_gittest.pybuild real git repos intmp_path(git init -b main+git init --bareorigin).This is the module + tests only; it is NOT yet wired into
health.py(that is a later cycle).Closes TICKET-054.