diff options
author | Julien Palard <julien@palard.fr> | 2021-06-08 07:22:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 07:22:58 (GMT) |
commit | 227a09325e7bf82ecd303b4696c054a086b29a00 (patch) | |
tree | 9ec480f9d8a57a211fb75e5c360db2499e093877 /.github | |
parent | ffd87b7093109c279caf8e3ca060f408a102388a (diff) | |
download | cpython-227a09325e7bf82ecd303b4696c054a086b29a00.zip cpython-227a09325e7bf82ecd303b4696c054a086b29a00.tar.gz cpython-227a09325e7bf82ecd303b4696c054a086b29a00.tar.bz2 |
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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/doc.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 1bc14a2..5198841 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: |