diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-20 17:51:25 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-20 17:51:25 +0100 |
commit | 8d0aa1ef19e2c3babee458bd4504820f415148e0 (patch) | |
tree | f0f9d5f35d7b48dbcac2261676d44ab463fa5912 /test | |
parent | 8867348ca772cdce7434e76eed141f035b63e928 (diff) | |
download | gitpython-8d0aa1ef19e2c3babee458bd4504820f415148e0.tar.gz |
Fixed performance tests which broke in the meanwhile - they definitely don't run often enough, which is because they intentionally don't have a package initialization file
Diffstat (limited to 'test')
-rw-r--r-- | test/git/performance/lib.py | 4 | ||||
-rw-r--r-- | test/git/performance/test_streams.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/git/performance/lib.py b/test/git/performance/lib.py index 4ac1f1da..76e574e6 100644 --- a/test/git/performance/lib.py +++ b/test/git/performance/lib.py @@ -46,8 +46,8 @@ class TestBigRepoR(TestBase): """ #{ Invariants - head_sha_2k = '235d521da60e4699e5bd59ac658b5b48bd76ddca' - head_sha_50 = '32347c375250fd470973a5d76185cac718955fd5' + head_sha_2k = 'd9671e15703918048982c9ff4e2e0fef21ede320' + head_sha_50 = 'ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe' #} END invariants @classmethod diff --git a/test/git/performance/test_streams.py b/test/git/performance/test_streams.py index ec061ece..a5811262 100644 --- a/test/git/performance/test_streams.py +++ b/test/git/performance/test_streams.py @@ -22,7 +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 - @with_bare_rw_repo + @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 # It should be shared if possible |