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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4645158090 for ; Sat, 21 May 2022 06:47:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6855E08C3; Sat, 21 May 2022 06:47:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B719E08C3 for ; Sat, 21 May 2022 06:47:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AFDAF3418A4 for ; Sat, 21 May 2022 06:47:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CA6E4ED for ; Sat, 21 May 2022 06:47:18 +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: <1653115633.c022e0bca35612626eec4d62e590d0f6bad2b7df.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fixtures/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fixtures/fixtures-4.0.0.ebuild X-VCS-Directories: dev-python/fixtures/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c022e0bca35612626eec4d62e590d0f6bad2b7df X-VCS-Branch: master Date: Sat, 21 May 2022 06:47:18 +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: c965f195-5375-4dc0-a61a-6f7eabfeec57 X-Archives-Hash: 1d06fefb802456886aec909296aa3713 commit: c022e0bca35612626eec4d62e590d0f6bad2b7df Author: Michał Górny gentoo org> AuthorDate: Sat May 21 06:23:52 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 21 06:47:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c022e0bc dev-python/fixtures: Run via (verbose) unittest runner Signed-off-by: Michał Górny gentoo.org> dev-python/fixtures/fixtures-4.0.0.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dev-python/fixtures/fixtures-4.0.0.ebuild b/dev-python/fixtures/fixtures-4.0.0.ebuild index 25709bab8188..1d98ba1aaa0f 100644 --- a/dev-python/fixtures/fixtures-4.0.0.ebuild +++ b/dev-python/fixtures/fixtures-4.0.0.ebuild @@ -18,8 +18,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="|| ( Apache-2.0 BSD )" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" >=dev-python/pbr-5.7.0[${PYTHON_USEDEP}] @@ -31,10 +29,8 @@ BDEPEND=" ) " +distutils_enable_tests unittest + PATCHES=( "${FILESDIR}"/${P}-pypy39.patch ) - -python_test() { - emake check -}