From f36bfb9a47b3f34e696f04d8e69063a2bae98e8d Mon Sep 17 00:00:00 2001 From: mio Date: Mon, 30 Mar 2026 05:35:31 +0000 Subject: [PATCH] community/py3-lmdb: skip test Skip test failing on most arches, same error as described in 4d50ec1c2ee53fa0690010de3b1726eaacaa33ed. --- community/py3-lmdb/APKBUILD | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/community/py3-lmdb/APKBUILD b/community/py3-lmdb/APKBUILD index ad2e22f8344..6c81bda80ec 100644 --- a/community/py3-lmdb/APKBUILD +++ b/community/py3-lmdb/APKBUILD @@ -31,13 +31,9 @@ check() { .testenv/bin/python3 -m installer .dist/*.whl local skipped_tests="not testNextNodupAfterDeletePutSingleKey and not testPrevNodupAfterDeletePutSingleKey" - case "$CARCH" in - # Test test_close segfaults on aarch64, arm*, loongarch64, ppc64le - aarch64|arm*|loongarch64|ppc64le) - .testenv/bin/python3 -m pytest -v -k "$skipped_tests and not test_close" ;; - *) - .testenv/bin/python3 -m pytest -v -k "$skipped_tests";; - esac + # Test test_close segfaults on multiple arches with CPython 3.14 + # aarch64, arm*, loongarch64, ppc64le, x86 + .testenv/bin/python3 -m pytest -v -k "$skipped_tests and not test_close" } package() {