commit: 442bcfa26d7d26d764584cf5daf767f2ade7276f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 10:52:19 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 11:35:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442bcfa2
dev-python/pytest-rerunfailures: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest-rerunfailures/Manifest | 1 -
.../pytest-rerunfailures-14.0.ebuild | 44 ----------------------
2 files changed, 45 deletions(-)
diff --git a/dev-python/pytest-rerunfailures/Manifest
b/dev-python/pytest-rerunfailures/Manifest
index 80ec500c84e7..a4a6723e944b 100644
--- a/dev-python/pytest-rerunfailures/Manifest
+++ b/dev-python/pytest-rerunfailures/Manifest
@@ -1,2 +1 @@
-DIST pytest-rerunfailures-14.0.tar.gz 21350 BLAKE2B
bb273d77a732c0296ca041b4cbd91fd48052076e9f76839b862b03de9f448208a216483bc486f23542cd99a12ef2934a46e3ea4162ca87bfd5c0904f2d114179
SHA512
8aa23a57206b0e6af133c716517c3c96cc156cc2f86b06c0fa80e9fea2b11f32e98cfb41f6a5fb05b38bab7496258160ba42fe6ae00d7bef8024159a8ed4a3f5
DIST pytest-rerunfailures-15.0.tar.gz 21816 BLAKE2B
75c42cec3a9cc0208e045be82c1b6660d56fff898ac0e97e992a020229a095a619eb1e87eeca8af7fba4f455f044ddd9729943becd90d185356e7bddb9ab1c6b
SHA512
c03f430f9e24e0b149391e08ae6f38450d731d1f6a28294173e75f8776dc596230422e2082bbbc74cf31ea7e4c3105f5d8d57825dc418c4ce1c5538d84c861c3
diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-14.0.ebuild
b/dev-python/pytest-rerunfailures/pytest-rerunfailures-14.0.ebuild
deleted file mode 100644
index 6381dacb7dcc..000000000000
--- a/dev-python/pytest-rerunfailures/pytest-rerunfailures-14.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="pytest plugin to re-run tests to eliminate flaky failures"
-HOMEPAGE="
- https://github.com/pytest-dev/pytest-rerunfailures/
- https://pypi.org/project/pytest-rerunfailures/
-"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 sparc x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
- >=dev-python/packaging-17.1[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
- if has_version ">=dev-python/pytest-8.2[${PYTHON_USEDEP}]"; then
- EPYTEST_DESELECT+=(
- #
https://github.com/pytest-dev/pytest-rerunfailures/issues/267
-
tests/test_pytest_rerunfailures.py::test_exception_match_only_rerun_in_dual_query
-
tests/test_pytest_rerunfailures.py::test_exception_matches_only_rerun_query
-
tests/test_pytest_rerunfailures.py::test_exception_matches_rerun_except_query
-
tests/test_pytest_rerunfailures.py::test_exception_not_match_rerun_except_query
-
tests/test_pytest_rerunfailures.py::test_run_session_teardown_once_after_reruns
- )
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- local -x PYTEST_PLUGINS=pytest_rerunfailures
- epytest
-}