(tempdir_factory, store)
| 291 | |
| 292 | |
| 293 | def test_really_long_file_paths(tempdir_factory, store): |
| 294 | base_path = tempdir_factory.get() |
| 295 | really_long_path = os.path.join(base_path, 'really_long' * 10) |
| 296 | cmd_output_b('git', 'init', really_long_path) |
| 297 | |
| 298 | path = make_repo(tempdir_factory, 'python_hooks_repo') |
| 299 | config = make_config_from_repo(path) |
| 300 | |
| 301 | with cwd(really_long_path): |
| 302 | _get_hook(config, store, 'foo') |
| 303 | |
| 304 | |
| 305 | def test_config_overrides_repo_specifics(tempdir_factory, store): |
nothing calls this directly
no test coverage detected