me
/
guix
Archived
1
0
Fork 0

gnu: python-matplotlib: Disable test that fails on Python 3.10.

* gnu/packages/python-xyz.scm (python-matplotlib)[arguments]: Skip one test.
master
Marius Bakke 2022-09-01 22:08:50 +02:00
parent 29e4955d0d
commit 7567840391
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 10 additions and 3 deletions

View File

@ -6469,9 +6469,16 @@ tests = True~%" (assoc-ref inputs "tcl") (assoc-ref inputs "tk"))))))
(invoke "pytest"
"-n" (number->string (parallel-job-count))
"-m" "not network" "--pyargs" "matplotlib"
;; The 'test_lazy_auto_backend_selection' fails
;; because it would require an X server; skip it.
"-k" "not test_lazy_auto_backend_selection"))))))))
"-k"
(string-append
;; The 'test_lazy_auto_backend_selection' fails
;; because it would require an X server; skip it.
"not test_lazy_auto_backend_selection"
;; test_getattr fails for the GTK backend because
;; of an unexpected warning from Python 3.10
;; (via the gi module):
;; https://gitlab.gnome.org/GNOME/pygobject/-/issues/494
" and not test_getattr")))))))))
(propagated-inputs
(list gobject-introspection
python-cairocffi