gnu: python-cython: Speed up test suite.
authorMarius Bakke <mbakke@fastmail.com>
Sat, 13 Jul 2019 16:51:16 +0000 (18:51 +0200)
committerMarius Bakke <mbakke@fastmail.com>
Sat, 13 Jul 2019 16:51:16 +0000 (18:51 +0200)
* gnu/packages/python-xyz.scm (python-cython)[arguments]: In the CHECK phase,
disable compiler optimizations and enable (some) parallel tests.

gnu/packages/python-xyz.scm

index 943ffdd..a60e1c7 100644 (file)
@@ -3229,7 +3229,12 @@ provides additional functionality on the produced Mallard documents.")
 
          (replace 'check
            (lambda _
-             (invoke "python" "runtests.py" "-vv"))))))
+             ;; Disable compiler optimizations to greatly reduce the running
+             ;; time of the test suite.
+             (setenv "CFLAGS" "-O0")
+
+             (invoke "python" "runtests.py" "-vv"
+                     "-j" (number->string (parallel-job-count))))))))
     (home-page "https://cython.org/")
     (synopsis "C extensions for Python")
     (description "Cython is an optimising static compiler for both the Python