community/py3-sympy: limit number of parallel test jobs

also, made `rm` in package() non-verbose again
This commit is contained in:
Celeste 2024-06-17 07:56:25 +00:00
parent 9e75bbc4d0
commit ecd19b65b6

View File

@ -36,7 +36,10 @@ check() {
python3 -m venv --clear --without-pip --system-site-packages .testenv
.testenv/bin/python3 -m installer .dist/*.whl
.testenv/bin/python3 -m pytest -n auto --timeout 600 --reruns 3 \
.testenv/bin/python3 -m pytest \
-n $((JOBS < 8 ? JOBS : 8)) \
--timeout 600 \
--reruns 3 \
--deselect sympy/matrices/tests/test_matrices.py::test_pinv_rank_deficient_when_diagonalization_fails \
--deselect sympy/core/tests/test_sympify.py::test_sympify_factorial \
--deselect sympy/parsing/tests/test_implicit_multiplication_application.py::test_all_implicit_steps \
@ -50,7 +53,7 @@ package() {
python3 -m installer -d "$pkgdir" \
.dist/*.whl
find "$pkgdir" -type d -name "tests" -exec rm -rv {} +
find "$pkgdir" -type d -name "tests" -exec rm -r {} +
}
sha512sums="