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_streams.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_streams.py')
-rw-r--r-- | git/test/performance/test_streams.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py index 7800144d..a2bca94c 100644 --- a/git/test/performance/test_streams.py +++ b/git/test/performance/test_streams.py @@ -3,11 +3,11 @@ from git.test.lib import * from gitdb import * from gitdb.util import bin_to_hex +from gitdb.test.lib import skip_on_travis_ci from time import time import os import sys -import stat import subprocess from gitdb.test.lib import make_memory_file @@ -22,6 +22,7 @@ class TestObjDBPerformance(TestBigRepoR): large_data_size_bytes = 1000 * 1000 * 10 # some MiB should do it moderate_data_size_bytes = 1000 * 1000 * 1 # just 1 MiB + @skip_on_travis_ci @with_rw_repo('HEAD', bare=True) def test_large_data_streaming(self, rwrepo): # TODO: This part overlaps with the same file in gitdb.test.performance.test_stream |