diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-15 16:25:25 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-27 22:52:00 +0000 |
commit | 55ded0719c98a96870b86c3143c281d22de041a3 (patch) | |
tree | d090274480fc7f7a6ce3326c6c9be4c88a968457 /gnu | |
parent | 0330bb8b68bc9cf6a86ddbfdd096abef4526e77e (diff) | |
download | guix-55ded0719c98a96870b86c3143c281d22de041a3.tar.gz guix-55ded0719c98a96870b86c3143c281d22de041a3.zip |
gnu: python-astroml: Ignore some failing tests.
* gnu/packages/astronomy.scm (python-astroml) [arguments]
<#:test-flags>: Disable some tests which are not compatible with Astropy
6.0.0.
Change-Id: I92f207e1e20a80de8904ee04aaba11469d9249b0
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index f8274e7a59..54b8e66931 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -569,7 +569,13 @@ Main features: (arguments (list #:test-flags - '(list "--ignore-glob=examples/*") + '(list "--ignore-glob=examples/*" + ;; Disable tests which are not compatible with Astropy 6.0.0, see + ;; <https://github.com/astroML/astroML/issues/273>. + "--ignore=astroML/density_estimation/tests/test_bayesian_blocks.py" + "--ignore=astroML/density_estimation/tests/test_bayesian_blocks.py" + "--ignore=astroML/density_estimation/tests/test_hist_binwidth.py" + "--ignore=astroML/density_estimation/tests/test_hist_binwidth.py") #:phases '(modify-phases %standard-phases (add-after 'unpack 'patch-build-system |