Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hpack/
Date: Sat, 14 Jul 2018 22:44:53
Message-Id: 1531608282.8dd339c957b1a97153aa41ac466ba31dd3d9dc3f.mgorny@gentoo
1 commit: 8dd339c957b1a97153aa41ac466ba31dd3d9dc3f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 14 22:38:21 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 14 22:44:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dd339c9
7
8 dev-python/hpack: Simplify test phase
9
10 dev-python/hpack/hpack-3.0.0.ebuild | 4 +---
11 1 file changed, 1 insertion(+), 3 deletions(-)
12
13 diff --git a/dev-python/hpack/hpack-3.0.0.ebuild b/dev-python/hpack/hpack-3.0.0.ebuild
14 index 44e8da1d9ac..caefcf33a67 100644
15 --- a/dev-python/hpack/hpack-3.0.0.ebuild
16 +++ b/dev-python/hpack/hpack-3.0.0.ebuild
17 @@ -34,7 +34,5 @@ python_prepare_all() {
18 }
19
20 python_test() {
21 - PYTHONPATH="${S}/test:${BUILD_DIR}/lib" \
22 - py.test -v hpack test/|| die
23 - cd test
24 + py.test -vv hpack test || die "Tests fail with ${EPYTHON}"
25 }