diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-02-13 16:11:14 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-02-13 16:11:14 +0100 |
commit | 622df12ef389c9e91f68ae10c54c043f34828c83 (patch) | |
tree | 888542636c0717727d52a4cd56d42338601e661a /gnu/packages/jupyter.scm | |
parent | 952c691b51f8f5d56df69686c2785414709c7949 (diff) | |
parent | 8a0910e042ad1670435613e06458a6fb2c4131c4 (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/packages/jupyter.scm')
-rw-r--r-- | gnu/packages/jupyter.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 87854afd72..0d50e4904b 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -804,7 +804,13 @@ JupyterLab.") (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? - (invoke "pytest" "-v"))))))) + (invoke + "pytest" "-v" + ;; Disable failing tests. + "-k" (string-append + "not test_dataunion_constricts_widget_data" + " and not test_dataunion_widget_change_notified" + " and not test_datawidget_creation_blank_comm")))))))) (propagated-inputs (list python-ipywidgets python-numpy python-six python-traittypes)) (native-inputs |