diff options
author | Ricardo Wurmus <[email protected]> | 2024-12-17 20:40:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:24 +0100 |
commit | 7589dbc9514db57c20e31949aefca559934ba8d0 (patch) | |
tree | 6462cd542a45897c1afa9caf5392bbe256aae1dc | |
parent | 9992e1eb732ca6359a2abdc738823802d0abcb09 (diff) |
gnu: python-joblib: Disable one additional test.
* gnu/packages/python-xyz.scm (python-joblib)[arguments]: Disable one more
test.
Change-Id: Id0b99ba3abb37bf49d26434b6719a7f6f77ee00a
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 475501a47d..3fc6df1a46 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7017,7 +7017,11 @@ bookmarks using a declarative input in the form of a markdown file.") #:test-flags ; disabled to avoid having to depend on ipython/jupyter #~(list "--numprocesses" (number->string (parallel-job-count)) - "-k" "not test_parallel_call_cached_function_defined_in_jupyter"))) + "-k" + (string-append + "not test_parallel_call_cached_function_defined_in_jupyter" + ;; XXX This test times out. + " and not test_no_resource_tracker_on_import")))) (native-inputs (list python-pytest python-pytest-xdist python-setuptools python-wheel)) (propagated-inputs (list python-psutil)) |