]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Remove redundant ``--keep-going`` when running Sphinx (GH-133156) (#133214)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 30 Apr 2025 16:44:00 +0000 (18:44 +0200)
committerGitHub <noreply@github.com>
Wed, 30 Apr 2025 16:44:00 +0000 (17:44 +0100)
Remove redundant ``--keep-going`` when running Sphinx (GH-133156)
(cherry picked from commit c78216e42c7548f148708fc08cfefbcda9b3ae01)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
.github/workflows/reusable-docs.yml

index 79c28223ac3706ccfa14276c46293a9f1c1e4831..657e0a6bf662f755f34544107495cf1255b8900a 100644 (file)
@@ -66,7 +66,7 @@ jobs:
       run: |
         set -Eeuo pipefail
         # Build docs with the nit-picky option; write warnings to file
-        make -C Doc/ PYTHON=../python SPHINXOPTS="--quiet --nitpicky --fail-on-warning --keep-going --warning-file sphinx-warnings.txt" html
+        make -C Doc/ PYTHON=../python SPHINXOPTS="--quiet --nitpicky --fail-on-warning --warning-file sphinx-warnings.txt" html
     - name: 'Check warnings'
       if: github.event_name == 'pull_request'
       run: |
@@ -101,4 +101,4 @@ jobs:
       run: make -C Doc/ PYTHON=../python venv
     # Use "xvfb-run" since some doctest tests open GUI windows
     - name: 'Run documentation doctest'
-      run: xvfb-run make -C Doc/ PYTHON=../python SPHINXERRORHANDLING="--fail-on-warning --keep-going" doctest
+      run: xvfb-run make -C Doc/ PYTHON=../python SPHINXERRORHANDLING="--fail-on-warning" doctest