summaryrefslogtreecommitdiff
path: root/test/test_tree.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-07-19 16:59:30 +0100
committerYobmod <yobmod@gmail.com>2021-07-19 16:59:30 +0100
commit454576254b873b7ebc45bb30846e5831dc2d8817 (patch)
tree853ad35953091faf2b0380793166fc420f1de102 /test/test_tree.py
parent6609ef7c3b5bb840dba8d0a5362e67746761a437 (diff)
downloadgitpython-454576254b873b7ebc45bb30846e5831dc2d8817.tar.gz
rmv python 3.5 checks from tests
Diffstat (limited to 'test/test_tree.py')
-rw-r--r--test/test_tree.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/test_tree.py b/test/test_tree.py
index 0607d8e3..24c401cb 100644
--- a/test/test_tree.py
+++ b/test/test_tree.py
@@ -5,7 +5,6 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
from io import BytesIO
-import sys
from unittest import skipIf
from git.objects import (
@@ -20,7 +19,7 @@ import os.path as osp
class TestTree(TestBase):
- @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')
@@ -53,7 +52,7 @@ class TestTree(TestBase):
testtree._deserialize(stream)
# END for each item in tree
- @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')