From: Julien Palard Date: Tue, 8 Jun 2021 07:22:58 +0000 (+0200) Subject: bpo-42238: Doc CI: Disable suspicious checks. (GH-26575) X-Git-Tag: v3.11.0a1~919 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=227a09325e7bf82ecd303b4696c054a086b29a00;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 1bc14a22ac69..519884177f64 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@v2.2.3 with: diff --git a/.travis.yml b/.travis.yml index c92404559a7d..4b85da1a44c0 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