guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

342/361: gnu: python-matplotlib: Disable more failing tests.


From: guix-commits
Subject: 342/361: gnu: python-matplotlib: Disable more failing tests.
Date: Thu, 21 Nov 2024 06:29:47 -0500 (EST)

sharlatan pushed a commit to branch python-team
in repository guix.

commit f021d9f624904ce9faa9d22c0379954da61e7b8a
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Nov 17 11:26:53 2024 +0000

    gnu: python-matplotlib: Disable more failing tests.
    
    * gnu/packages/python-xyz.scm (python-matplotlib): 5 more tests are
    disabled, they fail with verity of warnings and look save to silent.
    
    Change-Id: I81693452aa88ddbd44fb615f4d4251b5309e4ebe
---
 gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++--------
 1 file changed, 23 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 45f503839c..4576d98bd8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9701,14 +9701,29 @@ comparison.
      (list
       #:test-flags
       '(list "-m" "not network"
-             "-k"
-             (string-append
-              ;; This one fails with a small difference in the upper left.
-              "not test_figure_legend_outside"
-              " and not test_warn_big_data_best_loc"
-              ;; The 'test_lazy_auto_backend_selection' fails
-              ;; because it would require an X server; skip it.
-              " and not test_lazy_auto_backend_selection"))
+        "-k" (string-join
+              (list
+               ;; This one fails with a small difference in the upper left.
+               "not test_figure_legend_outside"
+               "test_warn_big_data_best_loc"
+               ;; The 'test_lazy_auto_backend_selection' fails because it
+               ;; would require an X server; skip it.
+               "test_lazy_auto_backend_selection"
+               ;; It fails with deprecation warning The register_cmap function
+               ;; was deprecated in Matplotlib 3.7 and will be removed two
+               ;; minor releases later.
+               "test_double_register_builtin_cmap"
+               ;; Failed: DID NOT WARN. No warnings of type (<class
+               ;; 'UserWarning'>,) were emitted.
+               "test_rcparams_update"
+               "test_rcparams_init"
+               ;; ResourceWarning: unclosed file <_io.BufferedWriter
+               ;; name='a.pdf'>
+               "test_multipage_keep_empty"
+               ;; UserWarning: Glyph 8722 (\N{MINUS SIGN}) missing from
+               ;; current font.
+               "test_mathtext_ticks")
+              " and not "))
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'build 'pretend-version



reply via email to

[Prev in Thread] Current Thread [Next in Thread]