mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-19 17:14:43 +04:00
Implement exclude_types
This commit is contained in:
parent
f956f421be
commit
05a108efe1
6 changed files with 46 additions and 13 deletions
|
|
@ -49,7 +49,13 @@ MANIFEST_HOOK_DICT = schema.Map(
|
||||||
'files', schema.check_and(schema.check_string, schema.check_regex),
|
'files', schema.check_and(schema.check_string, schema.check_regex),
|
||||||
'',
|
'',
|
||||||
),
|
),
|
||||||
|
schema.Optional(
|
||||||
|
'exclude',
|
||||||
|
schema.check_and(schema.check_string, schema.check_regex),
|
||||||
|
'^$',
|
||||||
|
),
|
||||||
schema.Optional('types', schema.check_array(check_type_tag), ['file']),
|
schema.Optional('types', schema.check_array(check_type_tag), ['file']),
|
||||||
|
schema.Optional('exclude_types', schema.check_array(check_type_tag), []),
|
||||||
|
|
||||||
schema.Optional(
|
schema.Optional(
|
||||||
'additional_dependencies', schema.check_array(schema.check_string), [],
|
'additional_dependencies', schema.check_array(schema.check_string), [],
|
||||||
|
|
@ -58,11 +64,6 @@ MANIFEST_HOOK_DICT = schema.Map(
|
||||||
schema.Optional('always_run', schema.check_bool, False),
|
schema.Optional('always_run', schema.check_bool, False),
|
||||||
schema.Optional('pass_filenames', schema.check_bool, True),
|
schema.Optional('pass_filenames', schema.check_bool, True),
|
||||||
schema.Optional('description', schema.check_string, ''),
|
schema.Optional('description', schema.check_string, ''),
|
||||||
schema.Optional(
|
|
||||||
'exclude',
|
|
||||||
schema.check_and(schema.check_string, schema.check_regex),
|
|
||||||
'^$',
|
|
||||||
),
|
|
||||||
schema.Optional('language_version', schema.check_string, 'default'),
|
schema.Optional('language_version', schema.check_string, 'default'),
|
||||||
schema.Optional('log_file', schema.check_string, ''),
|
schema.Optional('log_file', schema.check_string, ''),
|
||||||
schema.Optional('minimum_pre_commit_version', schema.check_string, '0'),
|
schema.Optional('minimum_pre_commit_version', schema.check_string, '0'),
|
||||||
|
|
|
||||||
|
|
@ -43,12 +43,14 @@ def get_changed_files(new, old):
|
||||||
)[1].splitlines()
|
)[1].splitlines()
|
||||||
|
|
||||||
|
|
||||||
def filter_filenames_by_types(filenames, types):
|
def filter_filenames_by_types(filenames, types, exclude_types):
|
||||||
types = frozenset(types)
|
types, exclude_types = frozenset(types), frozenset(exclude_types)
|
||||||
return tuple(
|
ret = []
|
||||||
filename for filename in filenames
|
for filename in filenames:
|
||||||
if tags_from_path(filename) >= types
|
tags = tags_from_path(filename)
|
||||||
)
|
if tags >= types and not tags & exclude_types:
|
||||||
|
ret.append(filename)
|
||||||
|
return tuple(ret)
|
||||||
|
|
||||||
|
|
||||||
def get_filenames(args, include_expr, exclude_expr):
|
def get_filenames(args, include_expr, exclude_expr):
|
||||||
|
|
@ -73,7 +75,9 @@ NO_FILES = '(no files to check)'
|
||||||
|
|
||||||
def _run_single_hook(hook, repo, args, skips, cols):
|
def _run_single_hook(hook, repo, args, skips, cols):
|
||||||
filenames = get_filenames(args, hook['files'], hook['exclude'])
|
filenames = get_filenames(args, hook['files'], hook['exclude'])
|
||||||
filenames = filter_filenames_by_types(filenames, hook['types'])
|
filenames = filter_filenames_by_types(
|
||||||
|
filenames, hook['types'], hook['exclude_types'],
|
||||||
|
)
|
||||||
if hook['id'] in skips:
|
if hook['id'] in skips:
|
||||||
output.write(get_hook_message(
|
output.write(get_hook_message(
|
||||||
_hook_msg_start(hook, args.verbose),
|
_hook_msg_start(hook, args.verbose),
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
- id: python-files
|
||||||
|
name: Python files
|
||||||
|
entry: bin/hook.sh
|
||||||
|
language: script
|
||||||
|
types: [python]
|
||||||
|
exclude_types: [python3]
|
||||||
3
testing/resources/exclude_types_repo/bin/hook.sh
Executable file
3
testing/resources/exclude_types_repo/bin/hook.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
echo $@
|
||||||
|
exit 1
|
||||||
|
|
@ -20,6 +20,7 @@ from pre_commit.commands.run import run
|
||||||
from pre_commit.runner import Runner
|
from pre_commit.runner import Runner
|
||||||
from pre_commit.util import cmd_output
|
from pre_commit.util import cmd_output
|
||||||
from pre_commit.util import cwd
|
from pre_commit.util import cwd
|
||||||
|
from pre_commit.util import make_executable
|
||||||
from testing.auto_namedtuple import auto_namedtuple
|
from testing.auto_namedtuple import auto_namedtuple
|
||||||
from testing.fixtures import add_config_to_repo
|
from testing.fixtures import add_config_to_repo
|
||||||
from testing.fixtures import make_consuming_repo
|
from testing.fixtures import make_consuming_repo
|
||||||
|
|
@ -43,7 +44,7 @@ def repo_with_failing_hook(tempdir_factory):
|
||||||
|
|
||||||
|
|
||||||
def stage_a_file(filename='foo.py'):
|
def stage_a_file(filename='foo.py'):
|
||||||
cmd_output('touch', filename)
|
open(filename, 'a').close()
|
||||||
cmd_output('git', 'add', filename)
|
cmd_output('git', 'add', filename)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -166,6 +167,22 @@ def test_types_hook_repository(
|
||||||
assert b'bar.notpy' not in printed
|
assert b'bar.notpy' not in printed
|
||||||
|
|
||||||
|
|
||||||
|
def test_exclude_types_hook_repository(
|
||||||
|
cap_out, tempdir_factory, mock_out_store_directory,
|
||||||
|
):
|
||||||
|
git_path = make_consuming_repo(tempdir_factory, 'exclude_types_repo')
|
||||||
|
with cwd(git_path):
|
||||||
|
with io.open('exe', 'w') as exe:
|
||||||
|
exe.write('#!/usr/bin/env python3\n')
|
||||||
|
make_executable('exe')
|
||||||
|
cmd_output('git', 'add', 'exe')
|
||||||
|
stage_a_file('bar.py')
|
||||||
|
ret, printed = _do_run(cap_out, git_path, _get_opts())
|
||||||
|
assert ret == 1
|
||||||
|
assert b'bar.py' in printed
|
||||||
|
assert b'exe' not in printed
|
||||||
|
|
||||||
|
|
||||||
def test_show_diff_on_failure(
|
def test_show_diff_on_failure(
|
||||||
capfd, cap_out, tempdir_factory, mock_out_store_directory,
|
capfd, cap_out, tempdir_factory, mock_out_store_directory,
|
||||||
):
|
):
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@ def test_manifest_contents(manifest):
|
||||||
'pass_filenames': True,
|
'pass_filenames': True,
|
||||||
'stages': [],
|
'stages': [],
|
||||||
'types': ['file'],
|
'types': ['file'],
|
||||||
|
'exclude_types': [],
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -56,6 +57,7 @@ def test_hooks(manifest):
|
||||||
'pass_filenames': True,
|
'pass_filenames': True,
|
||||||
'stages': [],
|
'stages': [],
|
||||||
'types': ['file'],
|
'types': ['file'],
|
||||||
|
'exclude_types': [],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue