You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, a small repository will be tested, which doesn't take that long actually (~20s)
Additionally, that way we enforce correctness tests, which didn't run by default previously.
As we are handling data here, we must be sure that it's handled correctly, thus the tests should
run.
print>>sys.stderr, "Read %i KiB of %s data at once from loose odb in %f s ( %f Read KiB / s)"% (size_kib, desc, elapsed_readall, size_kib/elapsed_readall)
81
+
print("Read %i KiB of %s data at once from loose odb in %f s ( %f Read KiB / s)"% (size_kib, desc, elapsed_readall, size_kib/elapsed_readall), file=sys.stderr)
print>>sys.stderr, "Read %i KiB of %s data in %i KiB chunks from loose odb in %f s ( %f Read KiB / s)"% (size_kib, desc, cs_kib, elapsed_readchunks, size_kib/elapsed_readchunks)
101
+
print("Read %i KiB of %s data in %i KiB chunks from loose odb in %f s ( %f Read KiB / s)"% (size_kib, desc, cs_kib, elapsed_readchunks, size_kib/elapsed_readchunks), file=sys.stderr)
0 commit comments