diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-25 15:13:17 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:08 +0200 |
commit | 1a781c2271f595d251fb1fef52177369afd6e94b (patch) | |
tree | 914d4cd6cb5d15a8521886002e783aaa910d5b85 | |
parent | 3eca1053043e2dc7b1311da000ff85ca3afca1e2 (diff) |
gnu: python-sphinx: Skip one more test.
* gnu/packages/sphinx.scm (python-sphinx) [arguments] <test-flags>: Skip
one more test.
Change-Id: I5d3e066c88a8b3497454392dd0521ee8741df6b9
-rw-r--r-- | gnu/packages/sphinx.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 01c154d35e..6847592a99 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -81,10 +81,15 @@ (arguments (list #:test-flags - ;; These require Internet access. - #~(list "-k" (string-append "not test_latex_images" - " and not test_build_latex_doc[lualatex-manual]" - " and not est_build_latex_doc[lualatex-howto]")) + #~(list "-k" (string-join + (list + ;; These require Internet access. + "not test_latex_images" + "test_build_latex_doc[lualatex-manual]" + "est_build_latex_doc[lualatex-howto]" + ;; AssertionError: assert...list of weak references to the object... + "test_autodoc_default_options") + " and not ")) #:phases #~(modify-phases %standard-phases (add-before 'check 'pre-check |