mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-13 12:30:08 -06:00
Add cygwin check after initialization. Resolves #437
This commit is contained in:
@@ -152,8 +152,8 @@ def main(argv=None):
|
||||
|
||||
with error_handler():
|
||||
add_logging_handler(args.color)
|
||||
git.check_for_cygwin_mismatch()
|
||||
runner = Runner.create()
|
||||
git.check_for_cygwin_mismatch()
|
||||
|
||||
if args.command == 'install':
|
||||
return install(
|
||||
|
||||
@@ -7,6 +7,7 @@ import mock
|
||||
import pytest
|
||||
|
||||
from pre_commit import main
|
||||
from pre_commit.error_handler import PreCommitSystemExit
|
||||
from pre_commit.util import cwd
|
||||
from testing.auto_namedtuple import auto_namedtuple
|
||||
|
||||
@@ -142,3 +143,16 @@ def test_help_cmd_in_empty_directory(
|
||||
mock.call(['help', 'run']),
|
||||
mock.call(['run', '--help']),
|
||||
])
|
||||
|
||||
|
||||
def test_expected_fatal_error_no_git_repo(
|
||||
tempdir_factory, cap_out, mock_out_store_directory,
|
||||
):
|
||||
with cwd(tempdir_factory.get()):
|
||||
with pytest.raises(PreCommitSystemExit):
|
||||
main.main([])
|
||||
assert cap_out.get() == (
|
||||
'An error has occurred: FatalError: git failed. '
|
||||
'Is it installed, and are you in a Git repository directory?\n'
|
||||
'Check the log at ~/.pre-commit/pre-commit.log\n'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user