dev-python/pytest-rerunfailures: initial import

Package-Manager: Portage-2.3.3, Repoman-2.3.1
This commit is contained in:
Sébastien Fabbro
2017-01-13 16:03:00 +00:00
parent fe1eb0b96c
commit 1931c8854e
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST pytest-rerunfailures-2.1.0.tar.gz 7687 SHA256 e867cec5eabb20ed38e04b6b9c277e34b0603143ee315beab56296d8329fe3f2 SHA512 9c3da462df07f334dcab865bf7f828f75bc611c93dfeb2306a802f2e6ef973332ef502d97dc8d676e09330ad77c227bc6a20ae67ff31f1446a5fb1d608d638cc WHIRLPOOL d6712ef5815f47687cb23d44edb0bf3ce519f11924245f4f14a9803adefd0f021df6385cf371610f8c9d9d91a44eb1913093ee5cfc5fc01ae4847d8f13dd9cc4

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pytest-rerunfailures</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,25 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
inherit distutils-r1
DESCRIPTION="py.test plugin to re-run tests to eliminate flaky failures"
HOMEPAGE="https://pypi.python.org/pypi/pytest-rerunfailures"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="MPL-2.0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="dev-python/pytest"
DEPEND="${RDEPEND}"
python_test() {
py.test -v || die
}