mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Add a --show-diff-on-failure option
This commit is contained in:
parent
0ece39c484
commit
05c88738b0
3 changed files with 32 additions and 1 deletions
|
|
@ -58,6 +58,7 @@ def _get_opts(
|
|||
source='',
|
||||
allow_unstaged_config=False,
|
||||
hook_stage='commit',
|
||||
show_diff_on_failure=False,
|
||||
):
|
||||
# These are mutually exclusive
|
||||
assert not (all_files and files)
|
||||
|
|
@ -67,11 +68,12 @@ def _get_opts(
|
|||
color=color,
|
||||
verbose=verbose,
|
||||
hook=hook,
|
||||
hook_stage=hook_stage,
|
||||
no_stash=no_stash,
|
||||
origin=origin,
|
||||
source=source,
|
||||
allow_unstaged_config=allow_unstaged_config,
|
||||
hook_stage=hook_stage,
|
||||
show_diff_on_failure=show_diff_on_failure,
|
||||
)
|
||||
|
||||
|
||||
|
|
@ -151,6 +153,23 @@ def test_hook_that_modifies_but_returns_zero(
|
|||
)
|
||||
|
||||
|
||||
def test_show_diff_on_failure(
|
||||
capfd, cap_out, tempdir_factory, mock_out_store_directory,
|
||||
):
|
||||
git_path = make_consuming_repo(
|
||||
tempdir_factory, 'modified_file_returns_zero_repo',
|
||||
)
|
||||
with cwd(git_path):
|
||||
stage_a_file('bar.py')
|
||||
_test_run(
|
||||
cap_out, git_path, {'show_diff_on_failure': True},
|
||||
# we're only testing the output after running
|
||||
(), 1, True,
|
||||
)
|
||||
out, _ = capfd.readouterr()
|
||||
assert 'diff --git' in out
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
('options', 'outputs', 'expected_ret', 'stage'),
|
||||
(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue