[git] GPGME - branch, master, updated. gpgme-1.9.0-9-gf8a9ecc
by Andre Heinecke
cvs at cvs.gnupg.org
Thu Mar 30 16:23:48 CEST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG Made Easy".
The branch, master has been updated
via f8a9ecc6290ebd73fa36647cdfca285fe4d94a62 (commit)
from 159505a28864399cc5405d9f85f35ab011a3259e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit f8a9ecc6290ebd73fa36647cdfca285fe4d94a62
Author: Andre Heinecke <aheinecke at intevation.de>
Date: Thu Mar 30 16:22:20 2017 +0200
python: Don't treat skipped tests as error
* lang/python/tests/run-tests.py (failed): Don't count skipped tests
for the return code.
diff --git a/lang/python/tests/run-tests.py b/lang/python/tests/run-tests.py
index c4af526..9e061d8 100644
--- a/lang/python/tests/run-tests.py
+++ b/lang/python/tests/run-tests.py
@@ -102,5 +102,5 @@ def failed():
if not args.quiet:
print("{0} tests run, {1} succeeded, {2} failed, {3} skipped.".format(
len(results), count(0), failed(), count(77)))
- sys.exit(len(results) - count(0))
+ sys.exit(len(results) - count(0) - count(77))
sys.exit(results[0])
-----------------------------------------------------------------------
Summary of changes:
lang/python/tests/run-tests.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GnuPG Made Easy
http://git.gnupg.org
More information about the Gnupg-commits
mailing list