guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: python-pyqtgraph: Disable one failing test.


From: guix-commits
Subject: 02/03: gnu: python-pyqtgraph: Disable one failing test.
Date: Mon, 25 Oct 2021 05:59:50 -0400 (EDT)

glv pushed a commit to branch core-updates-frozen
in repository guix.

commit 78a7c7f078177903f5d2ae53c544ecce8b4f14db
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Mon Oct 25 11:31:56 2021 +0200

    gnu: python-pyqtgraph: Disable one failing test.
    
    * gnu/packages/python-xyz.scm (python-pyqtgraph)[arguments]: Add test_reload
      to list of disabled tests.
---
 gnu/packages/python-xyz.scm | 23 ++++++++++++++---------
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ab05086..771c373 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14040,15 +14040,20 @@ ISO 8859, etc.).")
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (add-installed-pythonpath inputs outputs)
              (invoke "pytest" "-vv" "-k"
-                     ;; These tests try to download online data.
-                     (string-append "not test_PolyLineROI"
-                                    " and not test_getArrayRegion_axisorder"
-                                    " and not test_getArrayRegion"
-                                    " and not test_PlotCurveItem"
-                                    " and not test_NonUniformImage_colormap"
-                                    " and not test_NonUniformImage_lut"
-                                    " and not test_ImageItem_axisorder"
-                                    " and not test_ImageItem")))))))
+                     (string-append
+                      ;; These tests try to download online data.
+                      "not test_PolyLineROI"
+                      " and not test_getArrayRegion_axisorder"
+                      " and not test_getArrayRegion"
+                      " and not test_PlotCurveItem"
+                      " and not test_NonUniformImage_colormap"
+                      " and not test_NonUniformImage_lut"
+                      " and not test_ImageItem_axisorder"
+                      " and not test_ImageItem"
+                      ;; The test_reload test fails and suggests adding
+                      ;; "--assert=plain" to the pytest command, but it
+                      ;; doesn't solve the failure.
+                      " and not test_reload")))))))
     (native-inputs
      `(("python-pytest" ,python-pytest)
        ("python-pytest-cov" ,python-pytest-cov)



reply via email to

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