commit: 881c52092ad813cf72b30257cb3ae5a9126b4ab3
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 23 08:43:48 2025 +0000
Commit: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Sun Mar 23 09:03:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=881c5209
dev-python/python-manilaclient: disable functional tests
Default test discovery includes functional tests
(manilaclient/tests/functional), which fail.
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
.../python-manilaclient/python-manilaclient-5.4.0.ebuild | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/dev-python/python-manilaclient/python-manilaclient-5.4.0.ebuild
b/dev-python/python-manilaclient/python-manilaclient-5.4.0.ebuild
index 1e3f9649d..25f0c7531 100644
--- a/dev-python/python-manilaclient/python-manilaclient-5.4.0.ebuild
+++ b/dev-python/python-manilaclient/python-manilaclient-5.4.0.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1 pypi
DESCRIPTION="Python bindings to the OpenStack Manila API"
HOMEPAGE="
https://opendev.org/openstack/python-manilaclient
- https://github.com/openstack/ython-manilaclient/
+ https://github.com/openstack/python-manilaclient/
https://pypi.org/project/python-manilaclient/
"
@@ -43,6 +43,10 @@ BDEPEND="
)
"
-# The functional tests would requier the OpenStack manila service to be
-# packaged, too.
distutils_enable_tests unittest
+
+python_test() {
+ # The functional tests would requier the OpenStack manila service to be
+ # packaged, too.
+ eunittest manilaclient/tests/unit
+}