Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python3-openid/
Date: Sat, 03 Jun 2017 20:58:59
Message-Id: 1496523530.8abf67553cb0f279b8a49f0b0983ba55cd019ddf.floppym@gentoo
1 commit: 8abf67553cb0f279b8a49f0b0983ba55cd019ddf
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 3 20:58:50 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 3 20:58:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8abf6755
7
8 dev-python/python3-openid: die on test failure
9
10 Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69
11
12 dev-python/python3-openid/python3-openid-3.1.0.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/dev-python/python3-openid/python3-openid-3.1.0.ebuild b/dev-python/python3-openid/python3-openid-3.1.0.ebuild
16 index 934d5daa146..60b37f48280 100644
17 --- a/dev-python/python3-openid/python3-openid-3.1.0.ebuild
18 +++ b/dev-python/python3-openid/python3-openid-3.1.0.ebuild
19 @@ -24,5 +24,5 @@ DEPEND="${RDEPEND}
20 "
21
22 python_test() {
23 - ${EPYTHON} -m unittest -v openid.test.test_suite
24 + ${EPYTHON} -m unittest -v openid.test.test_suite || die "Tests failed with ${EPYTHON}"
25 }