We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705c05b commit 7f56102Copy full SHA for 7f56102
doc/conf.py
@@ -222,6 +222,13 @@
222
'github': ('https://github.com/nedbat/coveragepy/issues/%s', 'issue '),
223
}
224
225
+# Regexes for URLs that linkcheck should skip.
226
+linkcheck_ignore = [
227
+ # We have lots of links to GitHub, and they start refusing to serve them to linkcheck,
228
+ # so don't bother checking them.
229
+ r"https://github.com/nedbat/coveragepy/(issues|pull)/\d+",
230
+]
231
+
232
# When auto-doc'ing a class, only write the class' docstring into the class docs,
233
# don't automatically include the __init__ docstring.
234
autoclass_content = "class"
0 commit comments