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 EBE41138350 for ; Sat, 25 Apr 2020 10:52:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0939E0919; Sat, 25 Apr 2020 10:52:25 +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 A6888E0919 for ; Sat, 25 Apr 2020 10:52:25 +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 5B25B34F042 for ; Sat, 25 Apr 2020 10:52:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D22B91ED for ; Sat, 25 Apr 2020 10:52:22 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1587811716.584bde557d54130bc1f2ccbb7905834ebcb78a3b.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/text-unidecode/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/text-unidecode/text-unidecode-1.3.ebuild X-VCS-Directories: dev-python/text-unidecode/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 584bde557d54130bc1f2ccbb7905834ebcb78a3b X-VCS-Branch: dev Date: Sat, 25 Apr 2020 10:52:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9d3a5507-9c05-4c41-ac08-25a1fbf26744 X-Archives-Hash: 03ec811a3184df7304e8095212fad6ec commit: 584bde557d54130bc1f2ccbb7905834ebcb78a3b Author: Andrew Ammerlaan riseup net> AuthorDate: Sat Apr 25 10:48:36 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sat Apr 25 10:48:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=584bde55 dev-python/text-unidecode: pytest verbose (-vv) Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Andrew Ammerlaan riseup.net> dev-python/text-unidecode/text-unidecode-1.3.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/text-unidecode/text-unidecode-1.3.ebuild b/dev-python/text-unidecode/text-unidecode-1.3.ebuild index 496d2de..cf75f07 100644 --- a/dev-python/text-unidecode/text-unidecode-1.3.ebuild +++ b/dev-python/text-unidecode/text-unidecode-1.3.ebuild @@ -13,12 +13,11 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="|| ( Artistic GPL-1 GPL-2+ )" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" -DEPEND="test? ( dev-python/pytest )" RDEPEND="" +distutils_enable_tests pytest + python_prepare_all() { sed -i '/pytest-runner/d' setup.py distutils-r1_python_prepare_all @@ -29,5 +28,5 @@ python_test() { cd "${TEST_DIR}" || die cp "${S}/test_unidecode.py" . || die cp "${S}/setup.cfg" . || die - pytest || die "Tests fail with ${EPYTHON}" + pytest -vv || die "Tests fail with ${EPYTHON}" }