diff --git a/dev-python/pytest-rerunfailures/Manifest b/dev-python/pytest-rerunfailures/Manifest new file mode 100644 index 0000000000000..0b93b3911e2c3 --- /dev/null +++ b/dev-python/pytest-rerunfailures/Manifest @@ -0,0 +1 @@ +DIST pytest-rerunfailures-2.1.0.tar.gz 7687 SHA256 e867cec5eabb20ed38e04b6b9c277e34b0603143ee315beab56296d8329fe3f2 SHA512 9c3da462df07f334dcab865bf7f828f75bc611c93dfeb2306a802f2e6ef973332ef502d97dc8d676e09330ad77c227bc6a20ae67ff31f1446a5fb1d608d638cc WHIRLPOOL d6712ef5815f47687cb23d44edb0bf3ce519f11924245f4f14a9803adefd0f021df6385cf371610f8c9d9d91a44eb1913093ee5cfc5fc01ae4847d8f13dd9cc4 diff --git a/dev-python/pytest-rerunfailures/metadata.xml b/dev-python/pytest-rerunfailures/metadata.xml new file mode 100644 index 0000000000000..22f4da14655a0 --- /dev/null +++ b/dev-python/pytest-rerunfailures/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + pytest-rerunfailures + + diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild b/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild new file mode 100644 index 0000000000000..5ba6890b31b83 --- /dev/null +++ b/dev-python/pytest-rerunfailures/pytest-rerunfailures-2.1.0.ebuild @@ -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 +}