diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:26 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:34 +0200 |
commit | a951453fb7a20a5ed8d1f562ef360cb0794d78f8 (patch) | |
tree | cc8a54524363919e7b337c72176b1342f946b11f | |
parent | 303f7ced333ab5de8b5311a13a7b1418a13dd82b (diff) | |
download | guix-a951453fb7a20a5ed8d1f562ef360cb0794d78f8.tar.gz guix-a951453fb7a20a5ed8d1f562ef360cb0794d78f8.zip |
gnu: sphinx-5: Ignore failing test.
* gnu/packages/sphinx.scm (sphinx-5)[arguments]{test-flags}: Ignore
test test_autodoc_default_options (also ignored in sphinx@6).
Change-Id: I0bbb844051b57541b517aba20a6eee0830fb7544
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/sphinx.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 5f06cb04f5..c300b258da 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -197,7 +197,10 @@ sources.") " and not test_viewcode" ;; These fail with pygments 2.10+. They are harmless. " and not test_additional_targets_should_not_be_translated" - " and not test_additional_targets_should_be_translated")) + " and not test_additional_targets_should_be_translated" + ;; As in Sphinx@6: + ;; AssertionError: assert...list of weak references to the object... + " and not test_autodoc_default_options")) #:phases '(modify-phases %standard-phases (add-before 'check 'pre-check |