mirror of
https://gerrit.googlesource.com/git-repo
synced 2026-09-01 12:20:11 +00:00
Avoid disabling --current-branch when syncing a SHA-1 revision without an explicit project upstream (e.g., smart tags). Resolve a fallback upstream from dest-branch or manifest defaults so -c only fetches the target branch. Bug: 541240657 Change-Id: Ib44b6a732131210e1ec3a3136747d1a19bc5aa18 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/614762 Reviewed-by: Brian Gan <brgan@google.com> Tested-by: Gavin Mak <gavinmak@google.com> Commit-Queue: Gavin Mak <gavinmak@google.com>
Repo Tests
There is a mixture of pytest & Python unittest in here. We adopted pytest later on but didn't migrate existing tests (since they still work). New tests should be written using pytest only.
File layout
test_xxx.py: Unittests for thexxxmodule in the main repo codebase. Modules that are in subdirs normalize the/into_. For example, test_error.py is for the error.py module, and test_subcmds_forall.py is for the subcmds/forall.py module.- conftest.py: Custom pytest fixtures for sharing.
- utils_for_test.py: Helpers for sharing in tests.