From 60325031ef9b35a472773ea2e5d07609ae7920a4 Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Fri, 3 May 2024 16:27:05 +0000 Subject: [PATCH] community/py3-tqdm: deselect test_lock_args on all archs It was originally disabled, and while it passes on the CI, it fails on the builders, outputting a 15MB log when it does so. --- community/py3-tqdm/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/community/py3-tqdm/APKBUILD b/community/py3-tqdm/APKBUILD index 304c46d08ec..39616de9680 100644 --- a/community/py3-tqdm/APKBUILD +++ b/community/py3-tqdm/APKBUILD @@ -39,14 +39,15 @@ check() { python3 -m venv --clear --without-pip --system-site-packages .testenv .testenv/bin/python3 -m installer .dist/*.whl + # 30s timeout case "$CARCH" in riscv64) - # 30s timeout .testenv/bin/python3 -m pytest \ --ignore tests/tests_perf.py ;; *) - .testenv/bin/python3 -m pytest + .testenv/bin/python3 -m pytest \ + --deselect tests/tests_perf.py::test_lock_args ;; esac }