~ruther/guix-local

6a72d3c12fc0b32ed7f63bb80a8d044c08550019 — Sharlatan Hellseher 2 months ago b80dbd7
gnu: python-tdda: Skip one more test.

* gnu/packages/python-science.scm (python-tdda):
[arguments] <test-flags>: Skip one more test.
[native-inputs]: Remove python-wheel.

Change-Id: I1bcb5223627945d580d64e911cd73cf2da06287a
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
1 files changed, 5 insertions(+), 3 deletions(-)

M gnu/packages/python-science.scm
M gnu/packages/python-science.scm => gnu/packages/python-science.scm +5 -3
@@ 3716,11 3716,14 @@ depends on @code{scipy.sparse} for some computations.")
    (build-system pyproject-build-system)
    (arguments
     (list
      ;; tests: 276 passed, 14 skipped, 2 deselected
      #:test-flags
      #~(list
         ;; One test fails with error: AssertionError: False is not true : 5
         ;; lines are different, starting at line 1
         "--deselect=tdda/test_tdda.py::TestOne::test_ddiff_values_output")
         "--deselect=tdda/test_tdda.py::TestOne::test_ddiff_values_output"
         ;; TypeError: 'property' object is not iterable 
         "--deselect=tdda/test_tdda.py::TestPandasDataFrames::test_types_match")
      #:phases
      #~(modify-phases %standard-phases
          ;; "datetime.UTC" is not availalbe in Python 3.10 but in


@@ 3738,8 3741,7 @@ depends on @code{scipy.sparse} for some computations.")
           python-pyarrow
           python-pytest
           python-rich
           python-setuptools
           python-wheel))
           python-setuptools))
    (home-page "https://www.stochasticsolutions.com")
    (synopsis "Test-driven data analysis library for Python")
    (description