diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-26 22:20:33 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-09-28 03:35:19 +0200 |
commit | 618e6259ef03a4b25415bae31a7540ac5eb2e38a (patch) | |
tree | 9981f14dc0feda6bd693ccb72c1e454fb684fc15 /git/test/lib/helper.py | |
parent | aa3f2fa76844e1700ba37723acf603428b20ef74 (diff) | |
download | gitpython-618e6259ef03a4b25415bae31a7540ac5eb2e38a.tar.gz |
test, #519: Try appveyor advice for never-ending builds
+ see
http://help.appveyor.com/discussions/problems/5334-nosetests-finsih-bu-build-stuck-and-next-job-dealys-to-start
+ Use `io.DEFAULT_BUFFER_SIZE`.
+ test_commit: replace asserts with unittest-asserts.
- TRY Popen() NO universal_newlines: NO, reverted in next commits.
+
[travisci skip]
Diffstat (limited to 'git/test/lib/helper.py')
-rw-r--r-- | git/test/lib/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/lib/helper.py b/git/test/lib/helper.py index 9e6be3e3..d92d76e2 100644 --- a/git/test/lib/helper.py +++ b/git/test/lib/helper.py @@ -253,7 +253,7 @@ def with_rw_and_rw_remote_repo(working_tree_ref): finally: if gd is not None: - gd.proc.terminate() + gd.proc.kill() import gc gc.collect() |