python3-cypari2: reenable full testsuite

Note that running pytest will run a few tests, but running `make check`
will run many more tests (including all the pytest tests).

No need to revbump as there are no changes to package itself.
This commit is contained in:
Gonzalo Tornaría 2022-11-21 12:55:27 -03:00 committed by classabbyamp
parent 2c48e7f5fe
commit 24df87c236

View file

@ -15,5 +15,7 @@ distfiles="https://github.com/sagemath/cypari2/archive/refs/tags/${version}.tar.
checksum=6f6f6ca2b2c2dbef4444727e8fb8652b090cfac4297ba959e94b3a91bbd86548
do_check() {
PYTHONPATH=$(cd build/lib* && pwd) pytest
# Please do not disable this custom check;
# This will run many more tests than just running pytest
PYTHONPATH=$(cd build/lib* && pwd) make check
}