diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-03 19:48:05 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-03 19:48:05 +0100 |
commit | 342a0276dbf11366ae91ce28dcceddc332c97eaf (patch) | |
tree | b3a078975579c85e4e1306777931e9f3f44f5c2d /git/test/performance/test_odb.py | |
parent | 863a40e0d35f3ff3c3e4b5dc9ff1272e1b1783b1 (diff) | |
download | gitpython-342a0276dbf11366ae91ce28dcceddc332c97eaf.tar.gz |
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.
Diffstat (limited to 'git/test/performance/test_odb.py')
-rw-r--r-- | git/test/performance/test_odb.py | 3 |
1 files changed, 2 insertions, 1 deletions
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): |