(tmpdir)
| 44 | |
| 45 | @pytest.fixture |
| 46 | def in_git_dir(tmpdir): |
| 47 | repo = tmpdir.join('repo').ensure_dir() |
| 48 | with repo.as_cwd(): |
| 49 | cmd_output('git', 'init') |
| 50 | yield repo |
| 51 | |
| 52 | |
| 53 | def _make_conflict(): |
nothing calls this directly
no test coverage detected