This commit is contained in:
Anthony Sottile 2015-12-19 09:01:39 -08:00
parent 638e16e521
commit 577d8a1dfa
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
0.7.1
=====
- Support running pre-commit inside submodules
0.7.0
=====
- Store state about additional_dependencies for rollforward/rollback compatibility

View file

@ -9,7 +9,7 @@ setup(
'hooks.'
),
url='https://github.com/pre-commit/pre-commit',
version='0.7.0',
version='0.7.1',
author='Anthony Sottile',
author_email='asottile@umich.edu',

View file

@ -88,7 +88,7 @@ def test_pre_commit_path(in_tmpdir):
assert runner.pre_commit_path == expected_path
def test_pre_push_path():
def test_pre_push_path(in_tmpdir):
path = os.path.join('foo', 'bar')
cmd_output('git', 'init', path)
runner = Runner(path)