From 5d1c023441067147080e259e53457f6237b7d586 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Mon, 21 Nov 2022 12:55:27 -0300 Subject: [PATCH] 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. --- srcpkgs/python3-cypari2/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/python3-cypari2/template b/srcpkgs/python3-cypari2/template index a8ef86740ec4..8ac4dd3a5624 100644 --- a/srcpkgs/python3-cypari2/template +++ b/srcpkgs/python3-cypari2/template @@ -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 }