Skip to content

BF (codename "happy travis"): trying to address lints etc to make Travis green again #702

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Dec 11, 2017
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