summaryrefslogtreecommitdiff
path: root/dev-python/pygobject
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2026-07-10 21:48:50 +0100
committerSam James <sam@gentoo.org>2026-07-10 21:48:50 +0100
commit05ef15e2c3d6e9dbb917c79e69ce34159f0d21d2 (patch)
treed542c7a52553c965cfef2369f1a340f541b0b807 /dev-python/pygobject
parent941281a774d453d033bc17d972c6b416300944bd (diff)
dev-python/pygobject: skip broken test
According to the upstream discussion, it seems the test isn't really doing anything useful anyway, just it happens to fail on big-endian. Bug: https://gitlab.gnome.org/GNOME/pygobject/-/work_items/759 Closes: https://bugs.gentoo.org/978759 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/pygobject')
-rw-r--r--dev-python/pygobject/pygobject-3.56.3.ebuild5
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-python/pygobject/pygobject-3.56.3.ebuild b/dev-python/pygobject/pygobject-3.56.3.ebuild
index 445ed203e4f1..48d1404c6f38 100644
--- a/dev-python/pygobject/pygobject-3.56.3.ebuild
+++ b/dev-python/pygobject/pygobject-3.56.3.ebuild
@@ -67,8 +67,9 @@ python_test() {
local -x GIO_USE_VOLUME_MONITOR="unix" # prevent udisks-related failures in chroots, bug #449484
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
local -x XDG_CACHE_HOME="${T}/${EPYTHON}"
- # Timeout
- local -x PYTEST_ADDOPTS="-k 'not test_python_calls_sync'"
+ # test_python_calls_sync: timeout
+ # test_pointer_array_struct_with_guint8: broken on BE but test is dodgy anyway, bug #978759
+ local -x PYTEST_ADDOPTS="-k 'not test_python_calls_sync' -k 'not test_pointer_array_struct_with_guint8'"
meson_src_test --timeout-multiplier 3 || die "test for ${EPYTHON}"
}