diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-03 03:22:18 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-03 04:00:11 +0200 |
commit | 6df78b19b7786b15c664a7a1e0bcbb3e7c80f8da (patch) | |
tree | a0cacbd94958abc842059907aca9b9c07836bdf7 /git/test/performance/test_odb.py | |
parent | 1b440827a04ad23efb891eff28d90f172723c75d (diff) | |
download | gitpython-6df78b19b7786b15c664a7a1e0bcbb3e7c80f8da.tar.gz |
Appveyor: Add and set HIDE_WINDOWS_KNOWN_ERRORS=Falsewinerr_show
+ Collect all "acknowledged" failing TCs on Appveyor and use
"HIDE_WINDOWS_KNOWN_ERRORS" var to hide them.
Diffstat (limited to 'git/test/performance/test_odb.py')
-rw-r--r-- | git/test/performance/test_odb.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git/test/performance/test_odb.py b/git/test/performance/test_odb.py index 9abe2d42..99b550ac 100644 --- a/git/test/performance/test_odb.py +++ b/git/test/performance/test_odb.py @@ -6,6 +6,7 @@ from time import time from unittest.case import skipIf from git.compat import is_win, PY3 +from git.test.lib.helper import HIDE_WINDOWS_KNOWN_ERRORS from .lib import ( TestBigRepoR @@ -14,7 +15,8 @@ from .lib import ( class TestObjDBPerformance(TestBigRepoR): - @skipIf(is_win and PY3, "FIXME: smmp fails with: TypeError: Can't convert 'bytes' object to str implicitly") + @skipIf(HIDE_WINDOWS_KNOWN_ERRORS and is_win and PY3, + "FIXME: smmp fails with: TypeError: Can't convert 'bytes' object to str implicitly") def test_random_access(self): results = [["Iterate Commits"], ["Iterate Blobs"], ["Retrieve Blob Data"]] for repo in (self.gitrorepo, self.puregitrorepo): |