guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: python-scipy: Disable broken tests.


From: Ricardo Wurmus
Subject: 01/01: gnu: python-scipy: Disable broken tests.
Date: Mon, 3 Sep 2018 07:49:50 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 02ddafef5516c23caa91c821926774f618e48ad0
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Sep 3 13:47:01 2018 +0200

    gnu: python-scipy: Disable broken tests.
    
    * gnu/packages/python.scm (python-scipy)[arguments]: Skip two broken tests.
---
 gnu/packages/python.scm | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index fd1fdbf..9fdadfb 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3755,6 +3755,18 @@ functions.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'disable-broken-tests
+           (lambda _
+             (substitute* "scipy/sparse/linalg/dsolve/tests/test_linsolve.py"
+               (("^( +)def test_threads_parallel\\(self\\):" m indent)
+                (string-append indent
+                               "@pytest.mark.skip(reason=\"Disabled by 
Guix\")\n"
+                               m)))
+             (substitute* 
"scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py"
+               (("^def test_parallel_threads\\(\\):" m)
+                (string-append "@pytest.mark.skip(reason=\"Disabled by 
Guix\")\n"
+                               m)))
+             #t))
          (add-before 'build 'configure-openblas
            (lambda* (#:key inputs #:allow-other-keys)
              (call-with-output-file "site.cfg"



reply via email to

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