diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-18 14:26:31 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:35 +0100 |
| commit | 48c7795a0611eba89c5beda676a03b222685d84e (patch) | |
| tree | 987fed6c09162b29573b2e7acd0caae6a4c89481 | |
| parent | 4bc25c361ac6b1bcc6959df44737337bfe3704df (diff) | |
gnu: python-astropy: Skip one more test.
* gnu/packages/astronomy.scm (python-astropy)[arguments] <test-flags>:
Skip one more test.
Change-Id: I45a6e22463883759f9113ce286f8264b53e37d60
| -rw-r--r-- | gnu/packages/astronomy.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index b4f0e0e12a..fd6bf30230 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2685,8 +2685,12 @@ constraints (i.e., altitude, airmass, moon separation/illumination, etc.) #~(list "--pyargs" "astropy" ;; XXX: Tests are not thread save when they are more than 8. "--numprocesses" (number->string (min 8 (parallel-job-count))) - ;; Fails with assert 13 == 1. - "-k" "not test_skip_meta") + "-k" (string-append + ;; Fails with assert 13 == 1. + "not test_skip_meta" + ;; Failed: DID NOT WARN. No warnings of type (<class + ;; 'ResourceWarning'>,) were emitted. + " and not test_ephemeris_local_file_not_ephemeris")) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'preparations |
