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() {