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 DCA01138350 for ; Mon, 27 Apr 2020 07:19:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BC9DE0AE0; Mon, 27 Apr 2020 07:19:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 36A46E0AD5 for ; Mon, 27 Apr 2020 07:19:01 +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 CA56834FB50 for ; Mon, 27 Apr 2020 07:18:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E4B9207 for ; Mon, 27 Apr 2020 07:18:57 +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: <1587971915.577fb95b3e0ee8a6c124b940494e46e50f05787e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/brotlipy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild X-VCS-Directories: dev-python/brotlipy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 577fb95b3e0ee8a6c124b940494e46e50f05787e X-VCS-Branch: master Date: Mon, 27 Apr 2020 07:18:57 +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: 90b10cdc-7f4a-4418-abaa-91a4a3a76bd2 X-Archives-Hash: d9fefddd5ec626082c215fd4189834e5 commit: 577fb95b3e0ee8a6c124b940494e46e50f05787e Author: Michał Górny gentoo org> AuthorDate: Mon Apr 27 06:58:36 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 27 07:18:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577fb95b dev-python/brotlipy: Modernize Signed-off-by: Michał Górny gentoo.org> dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild b/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild index 7cd6af26849..3f600dc16b6 100644 --- a/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild +++ b/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild @@ -20,21 +20,18 @@ SRC_URI=" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" # module name collision with app-arch/brotli RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}] !app-arch/brotli[python]" DEPEND=" - ${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] ) " +distutils_enable_tests pytest + PATCHES=( "${FILESDIR}"/brotlipy-0.7.0-test-deadline.patch ) @@ -49,7 +46,3 @@ src_prepare() { distutils-r1_src_prepare } - -python_test() { - pytest -vv || die "Testing failed" -}