diff --git a/community/py3-lmdb/APKBUILD b/community/py3-lmdb/APKBUILD index 57f3fdf5040..58f495c3ad5 100644 --- a/community/py3-lmdb/APKBUILD +++ b/community/py3-lmdb/APKBUILD @@ -32,8 +32,8 @@ check() { local skipped_tests="not testNextNodupAfterDeletePutSingleKey and not testPrevNodupAfterDeletePutSingleKey" case "$CARCH" in - # Test test_close segfaults on loongarch64 - loongarch64) + # Test test_close segfaults on arm*, loongarch64, ppc64le + 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";;