(tempdir_factory, store)
| 81 | |
| 82 | |
| 83 | def test_missing_executable(tempdir_factory, store): |
| 84 | _test_hook_repo( |
| 85 | tempdir_factory, store, 'not_found_exe', |
| 86 | 'not-found-exe', [os.devnull], |
| 87 | b'Executable `i-dont-exist-lol` not found', |
| 88 | expected_return_code=1, |
| 89 | ) |
| 90 | |
| 91 | |
| 92 | def test_run_a_script_hook(tempdir_factory, store): |
nothing calls this directly
no test coverage detected