mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: python-ndcube: Disable failing tests.
* gnu/packages/astronomy.scm (python-ndcube) [arguments]: <#test-flags>: Disable 2 tests failing after python-astropy updated to 6.1.3. Change-Id: I95d07fb5d26dda534afbbe44d5dd9f30ebbf6d09
This commit is contained in:
parent
fbf5cc8c4d
commit
aa11b72f12
1 changed files with 10 additions and 3 deletions
|
@ -3076,9 +3076,16 @@ (define-public python-ndcube
|
|||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; Break cycle: python-ndcube -> python-specutils -> python-ndcube, see
|
||||
;; <https://github.com/sunpy/ndcube/issues/733>.
|
||||
#:test-flags #~(list "-k" "not test_rebin_specutils")
|
||||
#:test-flags
|
||||
#~(list "-k" (string-append
|
||||
;; Break cycle: python-ndcube -> python-specutils ->
|
||||
;; python-ndcube, see
|
||||
;; <https://github.com/sunpy/ndcube/issues/733>.
|
||||
"not test_rebin_specutils"
|
||||
;; Introduced with astropy 6.1.3, see
|
||||
;; <https://github.com/sunpy/ndcube/issues/758>.
|
||||
" and not test_2d[celestial_2d_ape14_wcs]"
|
||||
" and not test_2d[celestial_2d_fitswcs]"))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'break-cycle
|
||||
|
|
Loading…
Reference in a new issue