diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-09 17:55:51 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-29 15:08:08 +0000 |
commit | e1e2ee1e5574cd89102a8f72f808805a3a35505a (patch) | |
tree | b9b312d3a2d7078986832c0b8fac18e91660be37 /gnu | |
parent | 8aa70135ce4c16c1271ee07517ec8bc1c417c6d2 (diff) | |
download | guix-e1e2ee1e5574cd89102a8f72f808805a3a35505a.tar.gz guix-e1e2ee1e5574cd89102a8f72f808805a3a35505a.zip |
gnu: python-cdflib: Enable all tests.
* gnu/packages/astronomy.scm (python-cdflib) [arguments] <#:test-flags>:
Remove it to enable all tests.
Change-Id: I0fd44c117519efb306573d5ec603c430dbb1dc8c
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 0ac26b1e7d..382da91b4c 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -1930,7 +1930,7 @@ bad pixel tracking throughout the reduction process.") (version "1.2.6") (source (origin - (method git-fetch) ; no tests in pypi archive + (method git-fetch) ; no tests in PyPI release (uri (git-reference (url "https://github.com/MAVENSDC/cdflib") (commit version))) @@ -1939,10 +1939,7 @@ bad pixel tracking throughout the reduction process.") (base32 "1wxr35sqsdqzf85xyjh1v8hmwwiyv4cn0lr7q8l1kkngfywq5l2r")))) (build-system pyproject-build-system) (arguments - ;; Disable shaky test. - ;; See https://github.com/MAVENSDC/cdflib/issues/234 - (list #:test-flags #~(list "-k" "not test_compute_cdfepoch16") - #:phases + (list #:phases #~(modify-phases %standard-phases (add-before 'build 'set-env-version (lambda _ |