[CI Docs] Allow linkcheck to retry before declaring link broken (#3276)

* Update conf.py

* Create 3276.misc.rst
This commit is contained in:
jack1142 2020-01-09 17:13:50 +01:00 committed by Kowlin
parent 3546dd14d0
commit 83e93916e8
2 changed files with 2 additions and 0 deletions

View File

@ -0,0 +1 @@
Made docs linkcheck try link 3 times before declaring it broken.

View File

@ -207,6 +207,7 @@ texinfo_documents = [
# A list of regular expressions that match URIs that should not be # A list of regular expressions that match URIs that should not be
# checked when doing a linkcheck build. # checked when doing a linkcheck build.
linkcheck_ignore = [r"https://java.com*", r"https://chocolatey.org*"] linkcheck_ignore = [r"https://java.com*", r"https://chocolatey.org*"]
linkcheck_retries = 3
# -- Options for extensions ----------------------------------------------- # -- Options for extensions -----------------------------------------------