From d1abb1188bdc38b44f197f0541f2e8eb0168e999 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 4 Apr 2026 23:18:17 +0100 Subject: [PATCH] gnu: python-sphinx-6: Skip 3 more tests. * gnu/packages/sphinx.scm (python-sphinx-6)[arguments] : Skip 3 more tests; limit parallel tests up to 8 threads. Change-Id: I77688c6637e1e58669f51bcadb276aa3200df4e3 --- gnu/packages/sphinx.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 67f9b31090..5d1029700e 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -207,11 +207,10 @@ sources.") (build-system pyproject-build-system) (arguments (list + ;; tests: 1815 passed, 24 skipped, 4451 warnings #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count)) + #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) "-k" (string-join - ;; 1818 passed, 24 skipped, 97 warnings - ;; ;; AttributeError: module 'alabaster' has no ;; attribute 'version' (list "not test_theme_api" @@ -223,12 +222,16 @@ sources.") "test_additional_targets_should_be_translated" "test_additional_targets_should_not_be_translated" "test_autodoc_default_options" + "test_autodoc_type_aliases" + "test_enum_class" "test_html_code_role" "test_latex_code_role" "test_latex_images" "test_linenothreshold" "test_literal_include_linenos" - "test_viewcode") + "test_viewcode" + ;; ModuleNotFoundError: No module named 'target' + "test_attrgetter_using") " and not ")) #:phases #~(modify-phases %standard-phases