[Python-checkins] bpo-42238: Doc CI: Disable suspicious checks. (GH-26575)

JulienPalard webhook-mailer at python.org
Tue Jun 8 03:23:07 EDT 2021


https://github.com/python/cpython/commit/227a09325e7bf82ecd303b4696c054a086b29a00
commit: 227a09325e7bf82ecd303b4696c054a086b29a00
branch: main
author: Julien Palard <julien at palard.fr>
committer: JulienPalard <julien at palard.fr>
date: 2021-06-08T09:22:58+02:00
summary:

bpo-42238: Doc CI: Disable suspicious checks. (GH-26575)

They are slow and raise too many false positive, I'm in the slow
process to try to change this.

files:
M .github/workflows/doc.yml
M .travis.yml

diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index 1bc14a22ac6976..519884177f64ac 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -38,7 +38,7 @@ jobs:
     - name: 'Install build dependencies'
       run: make -C Doc/ PYTHON=../python venv
     - name: 'Build documentation'
-      run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html suspicious
+      run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html
     - name: 'Upload'
       uses: actions/upload-artifact at v2.2.3
       with:
diff --git a/.travis.yml b/.travis.yml
index c92404559a7d3a..4b85da1a44c036 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -53,7 +53,7 @@ matrix:
         - cd Doc
         - make venv PYTHON=python
       script:
-        - make check html suspicious SPHINXOPTS="-q -W -j4"
+        - make check html SPHINXOPTS="-q -W -j4"
     - name: "Documentation tests"
       os: linux
       language: c



More information about the Python-checkins mailing list