(repo_with_passing_hook)
| 990 | |
| 991 | @pytest.fixture |
| 992 | def modified_config_repo(repo_with_passing_hook): |
| 993 | with modify_config(repo_with_passing_hook, commit=False) as config: |
| 994 | # Some minor modification |
| 995 | config['repos'][0]['hooks'][0]['files'] = '' |
| 996 | yield repo_with_passing_hook |
| 997 | |
| 998 | |
| 999 | def test_error_with_unstaged_config(cap_out, store, modified_config_repo): |
nothing calls this directly
no test coverage detected