Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-rerunfailures/
Date: Fri, 10 May 2019 17:47:06
Message-Id: 1557509986.f483e0f0c69eea131348070d8a04829499553988.chutzpah@gentoo
1 commit: f483e0f0c69eea131348070d8a04829499553988
2 Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
3 AuthorDate: Fri May 10 17:34:10 2019 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Fri May 10 17:39:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f483e0f0
7
8 dev-python/pytest-rerunfailures: Version bump to 7.0
9
10 Copyright: Sony Interactive Entertainment Inc.
11 Package-Manager: Portage-2.3.66, Repoman-2.3.12
12 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
13
14 dev-python/pytest-rerunfailures/Manifest | 1 +
15 .../pytest-rerunfailures-7.0.ebuild | 25 ++++++++++++++++++++++
16 2 files changed, 26 insertions(+)
17
18 diff --git a/dev-python/pytest-rerunfailures/Manifest b/dev-python/pytest-rerunfailures/Manifest
19 index a271d84157f..16089db2fe6 100644
20 --- a/dev-python/pytest-rerunfailures/Manifest
21 +++ b/dev-python/pytest-rerunfailures/Manifest
22 @@ -1 +1,2 @@
23 DIST pytest-rerunfailures-2.1.0.tar.gz 7687 BLAKE2B 1c5ba90ab2b67c6a7b58d0569ef46847594dd6dcd5224050537fe3d645d131c2b450aa14a032151a81c6ff2c8b56d4355d03dd33a0e0f998e31a5df94df44c3a SHA512 9c3da462df07f334dcab865bf7f828f75bc611c93dfeb2306a802f2e6ef973332ef502d97dc8d676e09330ad77c227bc6a20ae67ff31f1446a5fb1d608d638cc
24 +DIST pytest-rerunfailures-7.0.tar.gz 12755 BLAKE2B 26ec453504439ba02afc2dc5912ebffad70a4e8fedc1f4ee75fbb3c187af4a657d8d29a341cbfe570423d2b743974286c00f911634b847536a66768d78088070 SHA512 df26952f4c88c43a7df59cc9b41d794987e4d7c43cf4b656fb2e10734e16b0218ea0dfcc184943f96c39add800fe519ee6b8843b3a0f4d36e9feb59109199df3
25
26 diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-7.0.ebuild b/dev-python/pytest-rerunfailures/pytest-rerunfailures-7.0.ebuild
27 new file mode 100644
28 index 00000000000..c94eaa19e7e
29 --- /dev/null
30 +++ b/dev-python/pytest-rerunfailures/pytest-rerunfailures-7.0.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="py.test plugin to re-run tests to eliminate flaky failures"
42 +HOMEPAGE="https://pypi.org/project/pytest-rerunfailures/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +SLOT="0"
46 +LICENSE="MPL-2.0"
47 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 +IUSE=""
49 +
50 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + >=dev-python/pytest-4.0[${PYTHON_USEDEP}]"
52 +DEPEND="${RDEPEND}"
53 +
54 +python_test() {
55 + py.test -v || die
56 +}