Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
RF: use HIDE_WINDOWS_KNOWN_ERRORS instead of is_win to skip hooks tests
  • Loading branch information
yarikoptic committed Nov 28, 2017
commit cc340779c5cd6efb6ac3c8d21141638970180f41
2 changes: 1 addition & 1 deletion git/test/test_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
HOOKS_SHEBANG = "#!/usr/bin/env sh\n"


@skipIf(is_win, "TODO: fix hooks execution on Windows: #703")
@skipIf(HIDE_WINDOWS_KNOWN_ERRORS, "TODO: fix hooks execution on Windows: #703")
def _make_hook(git_dir, name, content, make_exec=True):
"""A helper to create a hook"""
hp = hook_path(name, git_dir)
Expand Down