diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-21 14:56:34 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:05 +0000 |
commit | efaf99a21e001df1f20076eed824f3e78c96d1b9 (patch) | |
tree | bfd6e7552e7f7a987c2e4c6347bb9fd90945e578 /gnu | |
parent | 647337b529119643da6e4388e9169b08f591b40d (diff) |
gnu: python-poliastro: Disable more failing tests.
* gnu/packages/astronomy.scm (python-poliastro) [arguments]
<test-flags>: Ignore all tests from "test_czml.py" as all failed, skip
one more test.
Change-Id: Ie10688a0dbdeb25a0fe89417bc60839d44e6057c
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 2b7e0e8b5d..683e9b90bc 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4852,14 +4852,12 @@ of astronomical sources.") ;; TODO: Review failing tests later when any upstream ;; suggestions are provided: ;; https://github.com/poliastro/poliastro/issues/1618 - "-k" (string-append "not test_czml_add_trajectory" - " and not test_czml_custom_packet" - " and not test_czml_ground_station" - " and not test_czml_groundtrack" - " and not test_czml_preamble" - ;; This fails with "ufunc 'isfinite' not - ;; supported for the input types" - " and not test_porkchop_plotting")) + "--ignore=tests/test_czml.py" + "-k" (string-append + ;; This fails with "ufunc 'isfinite' not + ;; supported for the input types" + "not test_porkchop_plotting" + " and not test_maneuver_constructor_raises_error_if_invalid_delta_v")) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'relax-requirements |