From bd7d9087fa5d593e75cc5489b970499daa124979 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 25 May 2022 21:31:47 -0500 Subject: [PATCH] test: Ignore EPJ Web of Conferences DOI URLs during Sphinx linkcheck --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index da0c2647d8..53319a3b99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -468,5 +468,6 @@ def setup(app): 'cli.html#pyhf-xml2json', # https://doi.org/10.31526/lhep.2020.158 is causing linkcheck connection timeouts in CI r'https://doi\.org/10\.31526/.*', + r'https://doi\.org/10\.1051/epjconf/.*', ] linkcheck_retries = 50