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 99F6713835B for ; Tue, 25 Aug 2020 11:48:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BFC1E0863; Tue, 25 Aug 2020 11:48:52 +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 E684FE082B for ; Tue, 25 Aug 2020 11:48:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 55058340AE2 for ; Tue, 25 Aug 2020 11:48:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D41BD331 for ; Tue, 25 Aug 2020 11:48:48 +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: <1598354582.762d0029d5871ece184c02bca13354d159fc35bf.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hypothesis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hypothesis/hypothesis-5.29.0.ebuild X-VCS-Directories: dev-python/hypothesis/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 762d0029d5871ece184c02bca13354d159fc35bf X-VCS-Branch: master Date: Tue, 25 Aug 2020 11:48:48 +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: 176ecc8f-61c6-4e09-8934-d4dd2818a6c4 X-Archives-Hash: a987139f8f705b759e33e0074acf9f2b commit: 762d0029d5871ece184c02bca13354d159fc35bf Author: Michał Górny gentoo org> AuthorDate: Tue Aug 25 11:23:02 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 25 11:23:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762d0029 dev-python/hypothesis: Use pytest-xdist to speed tests up Signed-off-by: Michał Górny gentoo.org> dev-python/hypothesis/hypothesis-5.29.0.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/dev-python/hypothesis/hypothesis-5.29.0.ebuild b/dev-python/hypothesis/hypothesis-5.29.0.ebuild index c80c7aa009c..89b2b4ea6b8 100644 --- a/dev-python/hypothesis/hypothesis-5.29.0.ebuild +++ b/dev-python/hypothesis/hypothesis-5.29.0.ebuild @@ -7,7 +7,7 @@ DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) PYTHON_REQ_USE="threads(+),sqlite" -inherit distutils-r1 eutils +inherit distutils-r1 eutils multiprocessing DESCRIPTION="A library for property based testing" HOMEPAGE="https://github.com/HypothesisWorks/hypothesis https://pypi.org/project/hypothesis/" @@ -36,17 +36,11 @@ BDEPEND=" dev-python/mock[${PYTHON_USEDEP}] dev-python/pexpect[${PYTHON_USEDEP}] >=dev-python/pytest-5.3.5[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] !!