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 E9C18138334 for ; Tue, 25 Jun 2019 19:31:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD789E0844; Tue, 25 Jun 2019 19:31:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA86CE0844 for ; Tue, 25 Jun 2019 19:31:07 +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 B040E3469FF for ; Tue, 25 Jun 2019 19:31:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B0875E2 for ; Tue, 25 Jun 2019 19:31:03 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1561491054.aedb97ced1892344c20bf79c68a543149114ad8c.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-jose/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-jose/python-jose-3.0.1.ebuild X-VCS-Directories: dev-python/python-jose/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: aedb97ced1892344c20bf79c68a543149114ad8c X-VCS-Branch: master Date: Tue, 25 Jun 2019 19:31:03 +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: 35665a4a-dbf5-40a1-9b81-c3896ff45197 X-Archives-Hash: 24560ce08b3b4013c9c46563d8d788b1 commit: aedb97ced1892344c20bf79c68a543149114ad8c Author: Zac Medico gentoo org> AuthorDate: Tue Jun 25 19:18:15 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jun 25 19:30:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aedb97ce dev-python/python-jose: eliminate pytest-runner dep Reported-by: Toralf Förster gentoo.org> Closes: https://bugs.gentoo.org/688680 Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Zac Medico gentoo.org> dev-python/python-jose/python-jose-3.0.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-python/python-jose/python-jose-3.0.1.ebuild b/dev-python/python-jose/python-jose-3.0.1.ebuild index e304330420f..73f6c9b800c 100644 --- a/dev-python/python-jose/python-jose-3.0.1.ebuild +++ b/dev-python/python-jose/python-jose-3.0.1.ebuild @@ -30,6 +30,11 @@ DEPEND="${RDEPEND} dev-python/pytest-cov[${PYTHON_USEDEP}] )" +python_prepare_all() { + sed -e 's|'\''pytest-runner'\'',\?||' -i setup.py || die + distutils-r1_python_prepare_all +} + python_test() { - esetup.py test || die "tests failed with ${EPYTHON}" + py.test -v || die "tests failed with ${EPYTHON}" }