mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-04 19:26:52 +00:00
Fixed regex matching
This commit is contained in:
parent
daa1e9a837
commit
58edfc8af6
2 changed files with 12 additions and 7 deletions
|
|
@ -12,7 +12,7 @@ def test_validate_files_one_fails():
|
|||
|
||||
|
||||
def test_validate_files_django_all_pass():
|
||||
ret = validate_files(['--django', 'test_foo.py', 'test_bar.py'])
|
||||
ret = validate_files(['--django', 'test_foo.py', 'test_bar.py', 'tests/test_baz.py'])
|
||||
assert ret == 0
|
||||
|
||||
|
||||
|
|
@ -21,6 +21,11 @@ def test_validate_files_django_one_fails():
|
|||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_nested_files_django_one_fails():
|
||||
ret = validate_files(['--django', 'tests/not_test_ending.py', 'test_foo.py'])
|
||||
assert ret == 1
|
||||
|
||||
|
||||
def test_validate_files_not_django_fails():
|
||||
ret = validate_files(['foo_test.py', 'bar_test.py', 'test_baz.py'])
|
||||
assert ret == 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue