guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: python-sympy, python2-sympy: Only run core tests.


From: Ricardo Wurmus
Subject: 01/01: gnu: python-sympy, python2-sympy: Only run core tests.
Date: Thu, 8 Mar 2018 17:14:19 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit bbf8540d43bf84349fa1c002b2d1c42ebcc02636
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Mar 8 23:12:57 2018 +0100

    gnu: python-sympy, python2-sympy: Only run core tests.
    
    * gnu/packages/python.scm (python-sympy, python2-sympy)[arguments]: Move 
tests
    after installation; run only core tests.
---
 gnu/packages/python.scm | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 73b0e91..c454539 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5066,6 +5066,17 @@ more advanced mathematics.")
        (sha256
         (base32 "190n29sppw7g8ihilc5451y7jlfcaw56crqiqbf1jff43dlmfnxc"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; Run the core tests after installation.  By default it would run
+         ;; *all* tests, which take a very long time to complete and are known
+         ;; to be flaky.
+         (delete 'check)
+         (add-after 'install 'check
+           (lambda* (#:key outputs #:allow-other-keys)
+             (invoke "python3" "-c" "import sympy; sympy.test(\"/core\")")
+             #t)))))
     (propagated-inputs
      `(("python-mpmath" ,python-mpmath)))
     (home-page "http://www.sympy.org/";)
@@ -5077,7 +5088,19 @@ as possible in order to be comprehensible and easily 
extensible.")
     (license license:bsd-3)))
 
 (define-public python2-sympy
-  (package-with-python2 python-sympy))
+  (package
+    (inherit (package-with-python2 python-sympy))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; Run the core tests after installation.  By default it would run
+         ;; *all* tests, which take a very long time to complete and are known
+         ;; to be flaky.
+         (delete 'check)
+         (add-after 'install 'check
+           (lambda* (#:key outputs #:allow-other-keys)
+             (invoke "python" "-c" "import sympy; sympy.test(\"/core\")")
+             #t)))))))
 
 (define-public python-q
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]