git mv pre_commit/run.py pre_commit/main.py

This commit is contained in:
Anthony Sottile 2014-06-13 19:26:00 -07:00
parent 13c1b5295c
commit 111ed02938
3 changed files with 6 additions and 7 deletions

View file

@ -1,5 +1,4 @@
import argparse import argparse
import sys
from pre_commit import color from pre_commit import color
from pre_commit import commands from pre_commit import commands
@ -8,7 +7,7 @@ from pre_commit.util import entry
@entry @entry
def run(argv): def main(argv):
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
subparsers = parser.add_subparsers(dest='command') subparsers = parser.add_subparsers(dest='command')
@ -77,4 +76,4 @@ def run(argv):
if __name__ == '__main__': if __name__ == '__main__':
sys.exit(run()) exit(main())

View file

@ -44,7 +44,7 @@ setup(
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'pre-commit = pre_commit.run:run', 'pre-commit = pre_commit.main:main',
'validate-config = pre_commit.clientlib.validate_config:run', 'validate-config = pre_commit.clientlib.validate_config:run',
'validate-manifest = pre_commit.clientlib.validate_manifest:run', 'validate-manifest = pre_commit.clientlib.validate_manifest:run',
], ],

View file

@ -33,7 +33,7 @@ def test_cherry_pick_conflict(in_merge_conflict):
def get_files_matching_func(): def get_files_matching_func():
def get_filenames(): def get_filenames():
return ( return (
'pre_commit/run.py', 'pre_commit/main.py',
'pre_commit/git.py', 'pre_commit/git.py',
'im_a_file_that_doesnt_exist.py', 'im_a_file_that_doesnt_exist.py',
'hooks.yaml', 'hooks.yaml',
@ -45,7 +45,7 @@ def get_files_matching_func():
def test_get_files_matching_base(get_files_matching_func): def test_get_files_matching_base(get_files_matching_func):
ret = get_files_matching_func('', '^$') ret = get_files_matching_func('', '^$')
assert ret == set([ assert ret == set([
'pre_commit/run.py', 'pre_commit/main.py',
'pre_commit/git.py', 'pre_commit/git.py',
'hooks.yaml', 'hooks.yaml',
]) ])
@ -54,7 +54,7 @@ def test_get_files_matching_base(get_files_matching_func):
def test_get_files_matching_total_match(get_files_matching_func): def test_get_files_matching_total_match(get_files_matching_func):
ret = get_files_matching_func('^.*\\.py$', '^$') ret = get_files_matching_func('^.*\\.py$', '^$')
assert ret == set([ assert ret == set([
'pre_commit/run.py', 'pre_commit/main.py',
'pre_commit/git.py', 'pre_commit/git.py',
]) ])