diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 18:56:28 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-22 18:56:28 +0100 |
commit | f3d91ca75500285d19c6ae2d4bf018452ad822a6 (patch) | |
tree | 475b57fcdb557f9d081d5473e8bb34e2baaed3ff /git | |
parent | ffefb154982c6cc47c9be6b3eae6fb1170bb0791 (diff) | |
download | gitpython-f3d91ca75500285d19c6ae2d4bf018452ad822a6.tar.gz |
Bumped version to 0.3.6
Unfortunately, installation of a executable script has proven to be so
difficult thanks setuptools gloriousness, which will force me to remove
that feature
Diffstat (limited to 'git')
-rw-r--r-- | git/test/test_repo.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index ea491824..667ede74 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -34,10 +34,7 @@ from git.repo.fun import touch from git.util import join_path_native from git.exc import BadObject from gitdb.util import bin_to_hex -from git.compat import ( - string_types, - # PY3 -) +from git.compat import string_types from gitdb.test.lib import with_rw_directory import os @@ -615,7 +612,6 @@ class TestRepo(TestBase): # END handle multiple tokens # try partial parsing - # if not (PY3 and 'TRAVIS' in os.environ): max_items = 40 for i, binsha in enumerate(self.rorepo.odb.sha_iter()): assert rev_parse(bin_to_hex(binsha)[:8 - (i % 2)].decode('ascii')).binsha == binsha @@ -624,7 +620,6 @@ class TestRepo(TestBase): # which requires accessing packs, it has some additional overhead break # END for each binsha in repo - # end travis special handling # missing closing brace commit^{tree self.failUnlessRaises(ValueError, rev_parse, '0.1.4^{tree') |