diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-19 16:59:30 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-19 16:59:30 +0100 |
commit | 454576254b873b7ebc45bb30846e5831dc2d8817 (patch) | |
tree | 853ad35953091faf2b0380793166fc420f1de102 /test/test_submodule.py | |
parent | 6609ef7c3b5bb840dba8d0a5362e67746761a437 (diff) | |
download | gitpython-454576254b873b7ebc45bb30846e5831dc2d8817.tar.gz |
rmv python 3.5 checks from tests
Diffstat (limited to 'test/test_submodule.py')
-rw-r--r-- | test/test_submodule.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_submodule.py b/test/test_submodule.py index 85191a89..3307bc78 100644 --- a/test/test_submodule.py +++ b/test/test_submodule.py @@ -3,7 +3,6 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import os import shutil -import sys from unittest import skipIf import git @@ -421,7 +420,7 @@ class TestSubmodule(TestBase): def test_base_bare(self, rwrepo): self._do_base_tests(rwrepo) - @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and sys.version_info[:2] == (3, 5), """ + @skipIf(HIDE_WINDOWS_KNOWN_ERRORS, """ File "C:\\projects\\gitpython\\git\\cmd.py", line 559, in execute raise GitCommandNotFound(command, err) git.exc.GitCommandNotFound: Cmd('git') not found due to: OSError('[WinError 6] The handle is invalid') |