diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 12:06:10 +0200 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 22:26:04 +0200 |
commit | 929f3e1e1b664ed8cdef90a40c96804edfd08d59 (patch) | |
tree | 805c06bde21a6c4b3d9defe775527a3773bef3b9 /git/test/test_index.py | |
parent | 190c04569bd2a29597065222cdcc322ec4f2b374 (diff) | |
download | gitpython-929f3e1e1b664ed8cdef90a40c96804edfd08d59.tar.gz |
Drop support for EOL Python 2.6
Diffstat (limited to 'git/test/test_index.py')
-rw-r--r-- | git/test/test_index.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index 757bec9f..73123d6b 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -11,12 +11,8 @@ from stat import ( S_ISLNK, ST_MODE ) -import sys import tempfile -try: - from unittest import skipIf -except ImportError: - from unittest2 import skipIf +from unittest import skipIf from git import ( IndexFile, @@ -168,9 +164,7 @@ class TestIndex(TestBase): except Exception as ex: msg_py3 = "required argument is not an integer" msg_py2 = "cannot convert argument to integer" - msg_py26 = "unsupported operand type(s) for &: 'str' and 'long'" - assert msg_py2 in str(ex) or msg_py3 in str(ex) or \ - msg_py26 in str(ex), str(ex) + assert msg_py2 in str(ex) or msg_py3 in str(ex) ## 2nd time should not fail due to stray lock file try: @@ -180,9 +174,6 @@ class TestIndex(TestBase): @with_rw_repo('0.1.6') def test_index_file_from_tree(self, rw_repo): - if sys.version_info < (2, 7): - ## Skipped, not `assertRaisesRegexp` in py2.6 - return common_ancestor_sha = "5117c9c8a4d3af19a9958677e45cda9269de1541" cur_sha = "4b43ca7ff72d5f535134241e7c797ddc9c7a3573" other_sha = "39f85c4358b7346fee22169da9cad93901ea9eb9" |