From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C438E138334 for ; Sat, 14 Jul 2018 08:43:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7EA5E09F5; Sat, 14 Jul 2018 08:43:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABD8FE09F5 for ; Sat, 14 Jul 2018 08:43:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 395B1335C2E for ; Sat, 14 Jul 2018 08:43:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5CE9E367 for ; Sat, 14 Jul 2018 08:43:04 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1531557779.6011d5d53efddda0b04f7c05b60d7b451a1f0f7a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hyperlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hyperlink/hyperlink-18.0.0.ebuild X-VCS-Directories: dev-python/hyperlink/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6011d5d53efddda0b04f7c05b60d7b451a1f0f7a X-VCS-Branch: master Date: Sat, 14 Jul 2018 08:43:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1787e023-17cd-4acf-bf12-055546c6b252 X-Archives-Hash: 81ea3a4873404c26f75a7c27be54778b commit: 6011d5d53efddda0b04f7c05b60d7b451a1f0f7a Author: Michał Górny gentoo org> AuthorDate: Sat Jul 14 08:35:35 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jul 14 08:42:59 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6011d5d5 dev-python/hyperlink: Simplify test phase dev-python/hyperlink/hyperlink-18.0.0.ebuild | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-python/hyperlink/hyperlink-18.0.0.ebuild b/dev-python/hyperlink/hyperlink-18.0.0.ebuild index 673e40061ae..6eb930d3107 100644 --- a/dev-python/hyperlink/hyperlink-18.0.0.ebuild +++ b/dev-python/hyperlink/hyperlink-18.0.0.ebuild @@ -25,7 +25,5 @@ DEPEND="${RDEPEND} " python_test() { - PYTHONPATH="${S}/test:${BUILD_DIR}/lib" \ - py.test -v || die - cd test + pytest -vv || die }