diff options
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 |