diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-29 01:07:41 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-29 01:46:15 +0200 |
commit | 395955609dfd711cc4558e2b618450f3514b28c1 (patch) | |
tree | 9ee15a36cbc05f9b509aedbda2373cfc0ace2d17 /git/test/performance/test_streams.py | |
parent | f1d2d0683afa6328b6015c6a3aa6a6912a055756 (diff) | |
download | gitpython-395955609dfd711cc4558e2b618450f3514b28c1.tar.gz |
FIX hook TC on PY3+Win & indeterministic lock timing.
+ Cannot `index.path` into ENV, it is bytes!
+ The hook TC never runs on linux!
+ Unblock removal of odbfile in perf-large streams TC.
+ Attempt to unblock removal of submodule file by intensive cleaning.
more unblock files
Diffstat (limited to 'git/test/performance/test_streams.py')
-rw-r--r-- | git/test/performance/test_streams.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py index 4b1738cd..8194547c 100644 --- a/git/test/performance/test_streams.py +++ b/git/test/performance/test_streams.py @@ -87,6 +87,9 @@ class TestObjDBPerformance(TestBigRepoR): % (size_kib, desc, cs_kib, elapsed_readchunks, size_kib / elapsed_readchunks), file=sys.stderr) # del db file so git has something to do + ostream = None + import gc + gc.collect() os.remove(db_file) # VS. CGIT |