(tempdir_factory)
| 51 | |
| 52 | @pytest.fixture |
| 53 | def hook_disappearing(tempdir_factory): |
| 54 | path = make_repo(tempdir_factory, 'python_hooks_repo') |
| 55 | original_rev = git.head_rev(path) |
| 56 | |
| 57 | with modify_manifest(path) as manifest: |
| 58 | manifest[0]['id'] = 'bar' |
| 59 | |
| 60 | yield auto_namedtuple(path=path, original_rev=original_rev) |
| 61 | |
| 62 | |
| 63 | def test_rev_info_from_config(): |
nothing calls this directly
no test coverage detected