| D | git_repo_test.py | 8 # https://www.apache.org/licenses/LICENSE-2.0 32 def _run_tool(self, tool: str, args, **kwargs) -> CompletedProcess: 46 def git_ok(cmd: str, stdout: str) -> CompletedProcess: 55 def git_err(cmd: str, stderr: str, returncode: int = 1) -> CompletedProcess: 68 SUBMODULES = [ variable in TestGitRepo 73 GIT_SUBMODULES_OUT = "\n".join([str(x) for x in SUBMODULES]) 79 '--quiet', 80 '--recursive', 113 self.assertIn(self.SUBMODULES[2], paths) 137 self.assertNotIn(self.SUBMODULES[0], paths) [all …]
|