guix-commits
[Top][All Lists]
Advanced

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

26/26: gnu: python-blosc: Enable tests.


From: guix-commits
Subject: 26/26: gnu: python-blosc: Enable tests.
Date: Wed, 14 Jun 2023 07:58:55 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 9edf093e58a9ebbf5e4c6cdc874fcbcdbdca635d
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Jun 14 12:09:25 2023 +0300

    gnu: python-blosc: Enable tests.
    
    * gnu/packages/python-xyz.scm (python-blosc)[arguments]: Don't disable
    tests. Add custom 'check phase.
    [native-inputs]: Add cmake-minimal.
---
 gnu/packages/python-xyz.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 86665b0af4..65d9742f2d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25242,19 +25242,21 @@ they use the same path.")
         #~(begin (use-modules (guix build utils))
                  (delete-file-recursively "blosc/c-blosc")))))
     (build-system python-build-system)
-    ;; FIXME: all tests pass, but then this error is printed:
-    ;; TypeError: calling <function run at 0x7ffff2568d90> returned None, not 
a test
     (arguments
-     (list #:tests? #f
-           #:phases
+     (list #:phases
            #~(modify-phases %standard-phases
                (add-after 'unpack 'find-blosc
                  (lambda* (#:key inputs #:allow-other-keys)
                    (setenv "USE_SYSTEM_BLOSC" "1")
-                   (setenv "Blosc_ROOT" #$(this-package-input "c-blosc")))))))
+                   (setenv "Blosc_ROOT" #$(this-package-input "c-blosc"))))
+               (replace 'check
+                 (lambda* (#:key tests? #:allow-other-keys)
+                   (when tests?
+                     (invoke "python" "-m" "blosc.test")))))))
     (propagated-inputs
      (list python-scikit-build python-numpy))
     (inputs (list c-blosc))
+    (native-inputs (list cmake-minimal))
     (home-page "https://github.com/blosc/python-blosc";)
     (synopsis "Python wrapper for the Blosc data compressor library")
     (description "Blosc is a high performance compressor optimized for binary



reply via email to

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