commit: 3edcfe91476f0cae6eab4afeb332d902ecf90621
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 21 16:35:07 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 21 16:37:39 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3edcfe91
dev-python/tox: Use pytest-rerunfailures instead of flaky
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/tox/tox-4.28.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/tox/tox-4.28.0.ebuild b/dev-python/tox/tox-4.28.0.ebuild
index f08e1946b1a4..161d8f890141 100644
--- a/dev-python/tox/tox-4.28.0.ebuild
+++ b/dev-python/tox/tox-4.28.0.ebuild
@@ -43,7 +43,7 @@ BDEPEND="
)
"
-EPYTEST_PLUGINS=( flaky pytest-{mock,xdist} )
+EPYTEST_PLUGINS=( pytest-{mock,rerunfailures,xdist} )
distutils_enable_tests pytest
src_prepare() {
@@ -85,5 +85,5 @@ python_test() {
;;
esac
- epytest
+ epytest -o addopts=
}