Skip to content

Commit

Permalink
test: Ignore Belle2 Indico URL during Sphinx linkcheck (#2272)
Browse files Browse the repository at this point in the history
* Ignore URLs for https://indico.belle2.org/event/8470 from Sphinx
  linkcheck tests as the URL
  https://indico.belle2.org/event/8470/contributions/55871/ is frequently
  generating 403 Client Error.
  • Loading branch information
matthewfeickert authored Aug 10, 2023
1 parent 998ba7c commit 2204e99
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,8 @@ def setup(app):
r'https://doi\.org/10\.1051/epjconf/.*',
# https://indico.desy.de/event/22731/contributions/47953/ is frequently generating 403 Client Error
r'https://indico.desy.de/event/22731/.*',
# https://indico.belle2.org/event/8470/contributions/55871/ is frequently generating 403 Client Error
r'https://indico.belle2.org/event/8470/.*',
# tags for a release won't exist until it is made, but the release notes
# and ReadTheDocs need to reference them
r'https://github.com/scikit-hep/pyhf/releases/tag/.*',
Expand Down

0 comments on commit 2204e99

Please sign in to comment.