diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-04 21:16:38 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:26 +0200 |
commit | 5300ed2893ebfe2b5503d2537ce5164b01419dd3 (patch) | |
tree | 731a59e7ed00771cdd71164cf2dc7028e628dd0b | |
parent | e01edc1146a9afef31a026dfeb8c3cd25c113827 (diff) |
gnu: python-pytorch-geometric: Skip failing tests.
* gnu/packages/machine-learning.scm (python-pytorch-geometric):
[arguments]{test-flags}: Skip test_type_repr failing test.
Change-Id: I8ec82761a107ed6021c655250f8ab5b1187980c8
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/machine-learning.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index c3e0b4b4c4..7a42f93299 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -5588,7 +5588,10 @@ Note: currently this package does not provide GPU support.") ;; These refuse to be run on CPU and really want a GPU " and not test_add_random_walk_pe" " and not test_asap" - " and not test_two_hop")) + " and not test_two_hop" + ;; Failed when switched to python@3.11 + ;; typing module internals + " and not test_type_repr")) #:phases '(modify-phases %standard-phases (add-after 'unpack 'delete-top-level-directories |