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/priority/
Date: Sun, 15 Jul 2018 08:38:03
Message-Id: 1531643871.b28de56608fdc79a87dffd551e71f54866bf4851.mgorny@gentoo
1 commit: b28de56608fdc79a87dffd551e71f54866bf4851
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 07:01:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 08:37:51 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28de566
7
8 dev-python/priority: Simplify test phase
9
10 dev-python/priority/priority-1.3.0.ebuild | 3 +--
11 1 file changed, 1 insertion(+), 2 deletions(-)
12
13 diff --git a/dev-python/priority/priority-1.3.0.ebuild b/dev-python/priority/priority-1.3.0.ebuild
14 index 2ab133256ca..75a0d9d02b3 100644
15 --- a/dev-python/priority/priority-1.3.0.ebuild
16 +++ b/dev-python/priority/priority-1.3.0.ebuild
17 @@ -28,6 +28,5 @@ DEPEND="
18 "
19
20 python_test() {
21 - PYTHONPATH="${S}/test:${BUILD_DIR}/lib" py.test -v || die "Tests failed under ${EPYTHON}"
22 - cd test
23 + py.test -vv || die "Tests failed under ${EPYTHON}"
24 }