diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-12 21:13:20 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-13 02:03:35 +0200 |
commit | 83645971b8e134f45bded528e0e0786819203252 (patch) | |
tree | b03d7e77d88c297d52c3ac7280afba65cf1a59e2 /git/util.py | |
parent | 6310480763cdf01d8816d0c261c0ed7b516d437a (diff) | |
download | gitpython-83645971b8e134f45bded528e0e0786819203252.tar.gz |
test, #525: allow disabling freeze errors separately
+ cmd: use DEVNULL for non PIPEs; no open-file.
+ TCs: some unitestize-assertions on base & remote TCs.
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/util.py b/git/util.py index 57e056c3..568d9328 100644 --- a/git/util.py +++ b/git/util.py @@ -51,6 +51,7 @@ __all__ = ("stream_copy", "join_path", "to_native_path_windows", "to_native_path #: so the errors marked with this var are considered "acknowledged" ones, awaiting remedy, #: till then, we wish to hide them. HIDE_WINDOWS_KNOWN_ERRORS = is_win and os.environ.get('HIDE_WINDOWS_KNOWN_ERRORS', True) +HIDE_WINDOWS_FREEZE_ERRORS = is_win and os.environ.get('HIDE_WINDOWS_FREEZE_ERRORS', HIDE_WINDOWS_KNOWN_ERRORS) #{ Utility Methods |