Use new git lfs (broken due to lfs returning non-lfs files)

This commit is contained in:
Anthony Sottile 2017-07-01 21:24:34 -07:00
parent e11d94cfba
commit 0c5f040a7f
3 changed files with 8 additions and 21 deletions

View file

@ -79,10 +79,6 @@ xfailif_no_gitlfs = pytest.mark.xfail(
@xfailif_no_gitlfs
def test_allows_gitlfs(temp_git_dir): # pragma: no cover
with temp_git_dir.as_cwd():
# Work around https://github.com/github/git-lfs/issues/913
cmd_output(
'git', 'commit', '--no-gpg-sign', '--allow-empty', '-m', 'foo',
)
cmd_output('git', 'lfs', 'install')
temp_git_dir.join('f.py').write('a' * 10000)
cmd_output('git', 'lfs', 'track', 'f.py')