From 6df78b19b7786b15c664a7a1e0bcbb3e7c80f8da Mon Sep 17 00:00:00 2001 From: Kostis Anagnostopoulos Date: Mon, 3 Oct 2016 03:22:18 +0200 Subject: Appveyor: Add and set HIDE_WINDOWS_KNOWN_ERRORS=False + Collect all "acknowledged" failing TCs on Appveyor and use "HIDE_WINDOWS_KNOWN_ERRORS" var to hide them. --- git/test/performance/test_odb.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'git/test/performance/test_odb.py') 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): -- cgit v1.2.1