summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-07-21 19:05:49 +0200
committerMichał Górny <mgorny@gentoo.org>2025-07-21 19:07:16 +0200
commitb826fe9c0ccb8159a1cab28c652fc97151beb61e (patch)
treeff5f7e6357be3832daae209a0e7076517ee4abda /dev-python
parentcdad57bf0efe0ea509aad0e80238b41dbb0e4744 (diff)
downloadgentoo-b826fe9c0ccb8159a1cab28c652fc97151beb61e.tar.gz
gentoo-b826fe9c0ccb8159a1cab28c652fc97151beb61e.tar.bz2
gentoo-b826fe9c0ccb8159a1cab28c652fc97151beb61e.zip
dev-python/truststore: Use pytest-rerunfailures instead of flaky
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/truststore/truststore-0.10.1.ebuild9
1 files changed, 1 insertions, 8 deletions
diff --git a/dev-python/truststore/truststore-0.10.1.ebuild b/dev-python/truststore/truststore-0.10.1.ebuild
index 3ad6dfe66835..acbd352144ea 100644
--- a/dev-python/truststore/truststore-0.10.1.ebuild
+++ b/dev-python/truststore/truststore-0.10.1.ebuild
@@ -28,20 +28,13 @@ RESTRICT="test"
BDEPEND="
test? (
dev-python/aiohttp[${PYTHON_USEDEP}]
- dev-python/flaky[${PYTHON_USEDEP}]
dev-python/httpx[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
- dev-python/pytest-asyncio[${PYTHON_USEDEP}]
- dev-python/pytest-httpserver[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/trustme[${PYTHON_USEDEP}]
dev-python/urllib3[${PYTHON_USEDEP}]
)
"
+EPYTEST_PLUGINS=( pytest-{asyncio,httpserver,rerunfailures} )
distutils_enable_tests pytest
-
-python_test() {
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p asyncio -p pytest_httpserver
-}