guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 891a9bd967f76b968372f3e96d5a6fed6c184f1d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 23 11:53:32 2025 +0100
gnu: python-gpy: Fix tests.
* gnu/packages/machine-learning.scm (python-gpy)[arguments]
<test-flags>: Ignore 2 test files.
Change-Id: Ic529f0e913aaa7977503476f812c1d1293f5d2fc
---
gnu/packages/machine-learning.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index ff0ace2efd..f3cae49fa9 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -402,6 +402,15 @@ classification.")
(build-system pyproject-build-system)
(arguments
(list
+ #:test-flags
+ ;; TODO: Review tests.
+ #~(list
+ ;; Failed: 'yield' keyword is allowed in fixtures, but not in tests
+ ;; (test_scale2_models)
+ "--ignore=GPy/testing/test_likelihood.py"
+ ;; Failed: 'yield' keyword is allowed in fixtures, but not in
+ ;; tests (test_figure)
+ "--ignore=GPy/testing/test_plotting.py")
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'compatibility