Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/envoy/
Date: Thu, 28 Sep 2017 12:38:41
Message-Id: 1506602311.7213926aa1ebbf7f6914063f622414a3e0642168.monsieurp@gentoo
1 commit: 7213926aa1ebbf7f6914063f622414a3e0642168
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 28 12:36:55 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 28 12:38:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7213926a
7
8 dev-python/envoy: restrict tests.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.1
11
12 dev-python/envoy/envoy-0.0.3.ebuild | 7 +++++--
13 1 file changed, 5 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/envoy/envoy-0.0.3.ebuild b/dev-python/envoy/envoy-0.0.3.ebuild
16 index 4183c2fc76d..c37fa098c95 100644
17 --- a/dev-python/envoy/envoy-0.0.3.ebuild
18 +++ b/dev-python/envoy/envoy-0.0.3.ebuild
19 @@ -18,7 +18,10 @@ IUSE=""
20 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
21 RDEPEND=""
22
23 +RESTRICT="test"
24 +
25 python_test() {
26 - # and it fails almost all;https://github.com/kennethreitz/envoy/issues/58
27 - "${PYTHON}" test_envoy.py
28 + # These unit tests fail, see the following issue:
29 + # https://github.com/kennethreitz/envoy/issues/58
30 + "${PYTHON}" test_envoy.py || die
31 }