diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-20 23:12:35 +0100 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2024-05-30 18:23:34 +0400 |
commit | e0a7486709db336a1d052a43ee0c034bd1d54e3e (patch) | |
tree | 62490a4db794b8bacaec6aad9e83927166811f39 /gnu | |
parent | 6ceb7fadc314254bc0f512cd60bf1df2e808c829 (diff) | |
download | guix-e0a7486709db336a1d052a43ee0c034bd1d54e3e.tar.gz guix-e0a7486709db336a1d052a43ee0c034bd1d54e3e.zip |
gnu: python-pyvo: Disable a failing test.
* gnu/packages/astronomy.scm (python-pyvo) [arguments]: <#:test-flags>:
Disable one failing test.
Change-Id: I662a08126991c7db1f37d9ae04160f5a926d443f
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 6b2c124f80..39fc59509c 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2709,6 +2709,11 @@ interest, and which require portability between platforms or ease of scripting." (sha256 (base32 "0cm6agaf1gvc5bi95wx6a70ngj9vn95rx78fs59vlrmpww7q2807")))) (build-system pyproject-build-system) + (arguments + (list + ;; Disable one failing test, see + ;; <https://github.com/astropy/pyvo/issues/547>. + #:test-flags #~(list "-k" "not test_single_table_description"))) (native-inputs (list python-pytest-astropy python-requests-mock python-setuptools-scm)) (propagated-inputs |