diff options
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index ab18f3a8..d8c9742b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -222,6 +222,13 @@ extlinks = { 'github': ('https://github.com/nedbat/coveragepy/issues/%s', 'issue '), } +# Regexes for URLs that linkcheck should skip. +linkcheck_ignore = [ + # We have lots of links to GitHub, and they start refusing to serve them to linkcheck, + # so don't bother checking them. + r"https://github.com/nedbat/coveragepy/(issues|pull)/\d+", +] + # When auto-doc'ing a class, only write the class' docstring into the class docs, # don't automatically include the __init__ docstring. autoclass_content = "class" |