(cap_out, store, repo_with_passing_hook)
| 458 | |
| 459 | |
| 460 | def test_hook_verbose_enabled(cap_out, store, repo_with_passing_hook): |
| 461 | with modify_config() as config: |
| 462 | config['repos'][0]['hooks'][0]['always_run'] = True |
| 463 | config['repos'][0]['hooks'][0]['verbose'] = True |
| 464 | |
| 465 | _test_run( |
| 466 | cap_out, |
| 467 | store, |
| 468 | repo_with_passing_hook, |
| 469 | {}, |
| 470 | (b'Hello World',), |
| 471 | 0, |
| 472 | stage=False, |
| 473 | ) |
| 474 | |
| 475 | |
| 476 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected