This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch wip-python-team
in repository guix.
The following commit(s) were added to refs/heads/wip-python-team by this push:
new 7569c45bbf gnu: python-dask: Disable all tokenize tests.
7569c45bbf is described below
commit 7569c45bbf5c6379f118b801fd8e22839b25cc36
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu May 2 09:58:08 2024 +0200
gnu: python-dask: Disable all tokenize tests.
* gnu/packages/python-xyz.scm (python-dask)[arguments]: Ignore the test
file.
Change-Id: Icbd4845361aa57c493f473ab87a15ade8a20a65f
---
gnu/packages/python-xyz.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a7ce1ff38a..397feeaa74 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28068,6 +28068,9 @@ decisions with any given backend.")
#:test-flags
#~(list "-n" "auto"
"-m" "not gpu and not slow and not network"
+ ;; These all fail with different hashes. Doesn't seem
+ ;; problematic.
+ "--ignore=dask/tests/test_tokenize.py"
"-k" (string-append
;; This one cannot be interrupted.
"not test_interrupt"
@@ -28075,10 +28078,6 @@ decisions with any given backend.")
;; before assignment". Maybe enable this in later
;; versions (or when pandas has been upgraded.
" and not test_dt_accessor"
- ;; These all fail with different hashes. Doesn't seem
- ;; problematic.
- " and not test_tokenize_local_functions"
- " and not test_tokenize_functions_unique_token"
;; This one expects a deprecation warning that never
;; comes.
" and not test_RandomState_only_funcs")