Ver código fonte

Fix current linkcheck failures

Both work in principle, but the link checker runs into an SSL error for the first,
and fails to resolve the second link pointing to an eventual build artifact.
This change ignores both types of URLs. SSL error should be retried after a bit of
time.
Adina Wagner 3 meses atrás
pai
commit
d4a4172ded
1 arquivos alterados com 4 adições e 0 exclusões
  1. 4 0
      docs/conf.py

+ 4 - 0
docs/conf.py

@@ -180,6 +180,10 @@ linkcheck_ignore = [
     'https://twitter.com/datalad',
     # maybe a user-agent issue? github.com/sphinx-doc/sphinx//issues/10343
     'https://github.com/datalad/datalad-extension-template/generate',
+    # (temporary?) SSL certificate error
+    'https://fcon_1000.projects.nitrc.org/*',
+    # local link fails to resolve, maybe because its a build artifact?
+    '../_images/intro-v1-cover.jpg',
 ]
 
 # Add any paths that contain templates here, relative to this directory.