From 342a0276dbf11366ae91ce28dcceddc332c97eaf Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sat, 3 Jan 2015 19:48:05 +0100 Subject: Fixed all remaining non-performance tests * travis configuration adjusted to hopefully work better than before Performance traversal still fails when using git-python as standard repository. It naturally wants a larger one. On travis these tests are skipped though. --- git/test/performance/test_odb.py | 3 ++- 1 file changed, 2 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 6696e459..1c4bd9ed 100644 --- a/git/test/performance/test_odb.py +++ b/git/test/performance/test_odb.py @@ -2,7 +2,7 @@ from time import time import sys -import stat +from gitdb.test.lib import skip_on_travis_ci from lib import ( TestBigRepoR @@ -11,6 +11,7 @@ from lib import ( class TestObjDBPerformance(TestBigRepoR): + @skip_on_travis_ci def test_random_access(self): results = [["Iterate Commits"], ["Iterate Blobs"], ["Retrieve Blob Data"]] for repo in (self.gitrorepo, self.puregitrorepo): -- cgit v1.2.1