(path)
| 15 | |
| 16 | |
| 17 | def _init_repo(path): |
| 18 | path.mkdir(parents=True) |
| 19 | subprocess.run(["git", "init"], cwd=path, check=True, stdout=subprocess.DEVNULL) |
| 20 | return path |
| 21 | |
| 22 | |
| 23 | def test_find_git_repository_from_nested_directory(tmp_path): |
no test coverage detected