summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatoro Mahri <matoro_gentoo@matoro.tk>2024-06-10 01:27:18 -0400
committerMichał Górny <mgorny@gentoo.org>2024-06-12 20:18:15 +0200
commita85c5458c088a3b86b87f8e888edae82fd8911df (patch)
treec786080e9b3887652f81da698e04cf91f8c954eb /dev-python/pdm-backend
parentdev-python/jaraco-vcs: Remote test dep on dev-vcs/mercurial (diff)
downloadgentoo-a85c5458c088a3b86b87f8e888edae82fd8911df.tar.gz
gentoo-a85c5458c088a3b86b87f8e888edae82fd8911df.tar.bz2
gentoo-a85c5458c088a3b86b87f8e888edae82fd8911df.zip
dev-python/pdm-backend: always skip mercurial tests
Bug: https://bugs.gentoo.org/928728 Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk> Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pdm-backend')
-rw-r--r--dev-python/pdm-backend/pdm-backend-2.3.0.ebuild10
1 files changed, 1 insertions, 9 deletions
diff --git a/dev-python/pdm-backend/pdm-backend-2.3.0.ebuild b/dev-python/pdm-backend/pdm-backend-2.3.0.ebuild
index 3cf26e820c55..11b9e318ecff 100644
--- a/dev-python/pdm-backend/pdm-backend-2.3.0.ebuild
+++ b/dev-python/pdm-backend/pdm-backend-2.3.0.ebuild
@@ -37,9 +37,6 @@ BDEPEND="
test? (
dev-python/setuptools[${PYTHON_USEDEP}]
dev-vcs/git
- !s390? ( !sparc? (
- dev-vcs/mercurial
- ) )
)
"
# setuptools are used to build C extensions
@@ -72,11 +69,6 @@ src_test() {
}
python_test() {
- local args=()
- if ! has_version dev-vcs/mercurial; then
- args+=( -k "not [hg" )
- fi
-
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest "${args[@]}"
+ epytest -k "not [hg"
}