Skip to content

Commit c9c6e9f

Browse files
authoredNov 25, 2020
bpo-42238: Doc: Remove make suspicious from the CI and docs builds. (GH-23313)
It probably helped a lot a while back, but may not be as usefull today. We'll continue monitoring it before deletion, so true positives can be migrated to rstlint.
1 parent 8d17d2b commit c9c6e9f

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed
 

‎.azure-pipelines/docs-steps.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ steps:
1616
displayName: 'Install build dependencies'
1717

1818
- ${{ if ne(parameters.latex, 'true') }}:
19-
- script: make check suspicious html PYTHON=python
19+
- script: make check html PYTHON=python
2020
workingDirectory: '$(build.sourcesDirectory)/Doc'
2121
displayName: 'Build documentation'
2222

‎.github/workflows/doc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: 'Install build dependencies'
3737
run: make -C Doc/ PYTHON=../python venv
3838
- name: 'Build documentation'
39-
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest suspicious html
39+
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W --keep-going -j4" doctest html
4040
- name: 'Upload'
4141
uses: actions/upload-artifact@v2.2.0
4242
with:

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ matrix:
5353
- cd Doc
5454
- make venv PYTHON=python
5555
script:
56-
- make check suspicious html SPHINXOPTS="-q -W -j4"
56+
- make check html SPHINXOPTS="-q -W -j4"
5757
- name: "Documentation tests"
5858
os: linux
5959
language: c

‎Doc/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ serve:
216216
# for development releases: always build
217217
autobuild-dev:
218218
make dist SPHINXOPTS='$(SPHINXOPTS) -Ea -A daily=1'
219-
-make suspicious
220219

221220
# for quick rebuilds (HTML only)
222221
autobuild-dev-html:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Tentative to deprecate ``make suspicious`` by first removing it from the CI
2+
and documentation builds, but keeping it around for manual uses.

0 commit comments

Comments
 (0)
Please sign in to comment.