diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-03 03:22:18 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-03 04:00:11 +0200 |
commit | 6df78b19b7786b15c664a7a1e0bcbb3e7c80f8da (patch) | |
tree | a0cacbd94958abc842059907aca9b9c07836bdf7 /git/test/lib/helper.py | |
parent | 1b440827a04ad23efb891eff28d90f172723c75d (diff) | |
download | gitpython-6df78b19b7786b15c664a7a1e0bcbb3e7c80f8da.tar.gz |
Appveyor: Add and set HIDE_WINDOWS_KNOWN_ERRORS=Falsewinerr_show
+ Collect all "acknowledged" failing TCs on Appveyor and use
"HIDE_WINDOWS_KNOWN_ERRORS" var to hide them.
Diffstat (limited to 'git/test/lib/helper.py')
-rw-r--r-- | git/test/lib/helper.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/git/test/lib/helper.py b/git/test/lib/helper.py index 4335a977..d3d3ba29 100644 --- a/git/test/lib/helper.py +++ b/git/test/lib/helper.py @@ -32,6 +32,11 @@ __all__ = ( log = logging.getLogger('git.util') +#: We need an easy way to see if Appveyor TCs start failing, +#: so the errors marked with this var are considered "acknowledged" ones, awaiting remedy, +#: till then, we wish to hide them. +HIDE_WINDOWS_KNOWN_ERRORS = bool(os.environ.get('HIDE_WINDOWS_KNOWN_ERRORS', False)) + #{ Routines |