Skip to content

Commit 8d0aa1e

Browse files
committed
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
1 parent 8867348 commit 8d0aa1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/git/performance/lib.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ class TestBigRepoR(TestBase):
4646
"""
4747

4848
#{ Invariants
49-
head_sha_2k = '235d521da60e4699e5bd59ac658b5b48bd76ddca'
50-
head_sha_50 = '32347c375250fd470973a5d76185cac718955fd5'
49+
head_sha_2k = 'd9671e15703918048982c9ff4e2e0fef21ede320'
50+
head_sha_50 = 'ef9395f5ffe75f4e43d80cd1fa7b34c8a4db66fe'
5151
#} END invariants
5252

5353
@classmethod

test/git/performance/test_streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class TestObjDBPerformance(TestBigRepoR):
2222
large_data_size_bytes = 1000*1000*10 # some MiB should do it
2323
moderate_data_size_bytes = 1000*1000*1 # just 1 MiB
2424

25-
@with_bare_rw_repo
25+
@with_rw_repo('HEAD', bare=True)
2626
def test_large_data_streaming(self, rwrepo):
2727
# TODO: This part overlaps with the same file in gitdb.test.performance.test_stream
2828
# It should be shared if possible

0 commit comments

Comments
 (0)