guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: python-pyro-ppl: Skip one more test.


From: guix-commits
Subject: 02/03: gnu: python-pyro-ppl: Skip one more test.
Date: Thu, 25 Jan 2024 09:15:50 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 72a758bcd37319ce2cd3c8944fecb5ca5ef449bf
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Jan 25 12:42:11 2024 +0100

    gnu: python-pyro-ppl: Skip one more test.
    
    * gnu/packages/machine-learning.scm (python-pyro-ppl)[build-system]: Use
    pyproject-build-system.
    [arguments]: Remove custom 'check phase and replace with #:test-flags; 
disable
    test_sample tests.
    
    Change-Id: I058892451b9e5c96b077fae426a6649ce16f54c5
---
 gnu/packages/machine-learning.scm | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 5ae210f375..3a12eb8c2f 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -4848,24 +4848,23 @@ and Numpy.")
        (file-name (git-file-name name version))
        (sha256
         (base32 "0n1vsih99pvswcaygdxkc6kq6r48ny130z6ca8pp3281396r2ykw"))))
-    (build-system python-build-system)
+    (build-system pyproject-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
+     (list
+      #:test-flags
+      '(list "-vv" "--stage=unit"
              ;; This tests features that are only implemented when non-free
              ;; software is available (Intel MKL or CUDA).
-             (for-each delete-file
-                       (list "tests/distributions/test_spanning_tree.py"
-                             "tests/infer/mcmc/test_mcmc_api.py"))
-
+             "--ignore=tests/distributions/test_spanning_tree.py"
+             "--ignore=tests/infer/mcmc/test_mcmc_api.py"
+             ;; This test fails sometimes.
+             "--ignore=tests/optim/test_optim.py"
              ;; Four test_gamma_elbo tests fail with bad values for unknown
              ;; reasons.
-             (delete-file "tests/distributions/test_rejector.py")
-             ;; This test fails sometimes.
-             (delete-file "tests/optim/test_optim.py")
-             (invoke "pytest" "-vv" "--stage=unit"))))))
+             "--ignore=tests/distributions/test_rejector.py"
+             ;; This looks like a test system failure.  All of these fail
+             ;; because x is an array of functions, not an array of numbers.
+             "-k" "not test_sample")))
     (propagated-inputs
      (list python-numpy
            python-opt-einsum



reply via email to

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