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 66F38158CB7 for ; Thu, 19 Aug 2021 07:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37968E07F1; Thu, 19 Aug 2021 07:34:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 CE480E07D8 for ; Thu, 19 Aug 2021 07:34:33 +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 81C14342A1D for ; Thu, 19 Aug 2021 07:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8DD58A7 for ; Thu, 19 Aug 2021 07:34:30 +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: <1629356239.ee29073edf1410c6708590307da30c30101d7843.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-describe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-describe/Manifest dev-python/pytest-describe/pytest-describe-2.0.0.ebuild X-VCS-Directories: dev-python/pytest-describe/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ee29073edf1410c6708590307da30c30101d7843 X-VCS-Branch: master Date: Thu, 19 Aug 2021 07:34:30 +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: 8c9912c9-8c8e-47f3-9f1c-ff0ed97dd2b1 X-Archives-Hash: b04015d41864c29e1872c953e25b12d9 commit: ee29073edf1410c6708590307da30c30101d7843 Author: Michał Górny gentoo org> AuthorDate: Thu Aug 19 06:38:55 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Aug 19 06:57:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee29073e dev-python/pytest-describe: Bump to 2.0.0 Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-describe/Manifest | 1 + .../pytest-describe/pytest-describe-2.0.0.ebuild | 26 ++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/pytest-describe/Manifest b/dev-python/pytest-describe/Manifest index 682d4446bcb..badacc490dc 100644 --- a/dev-python/pytest-describe/Manifest +++ b/dev-python/pytest-describe/Manifest @@ -1 +1,2 @@ DIST pytest-describe-1.0.0.tar.gz 8917 BLAKE2B 8608a00151273ebb22da6a297580295abbd64c7d9e90bfba9611eac3be64247be20ee43bb64ead1a3f74e65719112a94535506f4402cb7084802360609ab0173 SHA512 1cefa2911e598063b3b9dce381750d204c925cb0dde890b79745c8b4f1cf6d0349f85dc9eaf895000a6f15f45a84fb920f27c01b0af1959125fbe3716cbebbbc +DIST pytest-describe-2.0.0.tar.gz 9711 BLAKE2B d9a799afebf77166c81a9d2477a378d7664e9aa586460043c9a9448838eafebcb0679768d10d2439ab350b48ad7263ebe17eea6fdaef96ef14aceb6aa9ff943c SHA512 28edd2b10607424aff7b95dd834716fc1888a09c23d810e0b9870a5a93de3ca745d3506a6327ece6f92b3afcdcee0fb56f6f163e2868abcf2022175708ff58af diff --git a/dev-python/pytest-describe/pytest-describe-2.0.0.ebuild b/dev-python/pytest-describe/pytest-describe-2.0.0.ebuild new file mode 100644 index 00000000000..b0f2ea97b6d --- /dev/null +++ b/dev-python/pytest-describe/pytest-describe-2.0.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Describe-style plugin for pytest" +HOMEPAGE="https://github.com/pytest-dev/pytest-describe/ + https://pypi.org/project/pytest-describe/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=dev-python/pytest-2.6.0[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +python_test() { + # We need to disable some plugins because tests don't like unexpected + # output + PYTEST_ADDOPTS="-p no:flaky -p no:capturelog" epytest +}