summaryrefslogtreecommitdiff
path: root/test/git/performance/test_streams.py
Commit message (Collapse)AuthorAgeFilesLines
* flattened test folder structure, didn't adjust any file content yetSebastian Thiel2010-11-211-131/+0
|
* Fixed performance tests which broke in the meanwhile - they definitely don't ↵Sebastian Thiel2010-11-201-1/+1
| | | | run often enough, which is because they intentionally don't have a package initialization file
* Fixed performance tests which broke in the course of the sha1-20 byte changesSebastian Thiel2010-06-281-6/+7
|
* Removed odb from project, it is now used as a submodule named gitdb, which ↵Sebastian Thiel2010-06-121-9/+4
| | | | | | was added instead Adjusted all imports to deal with the changed package names
* Implemented stream tests, found a bug on the way, slowly a test-framework ↵Sebastian Thiel2010-06-041-11/+2
| | | | for streams starts to show up, but its not yet there
* Fixed implementation after design change to deal with it - all tests run, ↵Sebastian Thiel2010-06-041-6/+6
| | | | but next there will have to be more through testing
* initial version of new odb design to facilitate a channel based ↵Sebastian Thiel2010-06-041-3/+3
| | | | multi-threading implementation of all odb functions
* commit.create_from_tree now uses pure python implementation, fixed message ↵Sebastian Thiel2010-06-031-2/+2
| | | | | | parsing which truncated newlines although it was ilegitimate. Its up to the reader to truncate therse, nowhere in the git code I could find anyone adding newlines to commits where it is written Added performance tests for serialization, it does about 5k commits per second if writing to tmpfs
* Added performance comparison to cgit ... and yes, git-python is faster :)Sebastian Thiel2010-06-031-7/+60
|
* odb: fixed streamed decompression reader ( specific tests would still be ↵Sebastian Thiel2010-06-031-0/+91
missing ) and added performance tests which are extremely promising