guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: python-numpy: Skip 2 more tests on riscv64-l


From: guix-commits
Subject: branch master updated: gnu: python-numpy: Skip 2 more tests on riscv64-linux.
Date: Sun, 19 Jun 2022 09:22:08 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1e3046810a gnu: python-numpy: Skip 2 more tests on riscv64-linux.
1e3046810a is described below

commit 1e3046810af92d7a659a942bac1f7ec572bfc1b0
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jun 19 16:18:40 2022 +0300

    gnu: python-numpy: Skip 2 more tests on riscv64-linux.
    
    * gnu/packages/python-xyz.scm (python-numpy)[arguments]: Adjust custom
    'check phase to skip two more tests when building for riscv64-linux.
---
 gnu/packages/python-xyz.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 723980420f..f19f0ed285 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5457,7 +5457,14 @@ include_dirs = ~:*~a/include~%" #$(this-package-input 
"openblas"))))))
                               ;; These tests may fail on 32-bit systems (see:
                               ;; https://github.com/numpy/numpy/issues/18387).
                               "not test_float_remainder_overflow "
-                              "and not test_pareto"))))))))
+                              "and not test_pareto"
+                              ;; These tests seem to fail on machines without
+                              ;; an FPU is still under investigation upstream.
+                              ;; https://github.com/numpy/numpy/issues/20635
+                              #$@(if (target-riscv64?)
+                                   `(" and not test_float"
+                                     " and not test_fpclass")
+                                   '())))))))))
     (native-inputs
      (list python-cython
            python-hypothesis-next



reply via email to

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