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.
This commit is contained in:
Celeste 2024-05-03 16:27:05 +00:00
parent 5b6cf69bb8
commit 60325031ef

View File

@ -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
}