Skip to content

Commit

Permalink
test: Ignore World Scientific journal URLs during Sphinx linkcheck (#…
Browse files Browse the repository at this point in the history
…2308)

* Ignore URLs for World Scientific journal article
 https://doi.org/10.1142/S0217732321020016 from Sphinx linkcheck tests.

 Avoids:

```
403 Client Error: Forbidden for url:
https://www.worldscientific.com/doi/abs/10.1142/S0217732321020016
```
  • Loading branch information
matthewfeickert authored Aug 30, 2023
1 parent e4c7248 commit d9b079f
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 @@ -519,6 +519,8 @@ def setup(app):
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/.*',
# https://doi.org/10.1142/S0217732321020016 is frequently generating 403 Client Error
r'https://doi\.org/10.1142/.*',
# CERN doesn't maintain its SSL certs well enough to not have SSLErrors
r'https://twiki.cern.ch/.*',
# tags for a release won't exist until it is made, but the release notes
Expand Down

0 comments on commit d9b079f

Please sign in to comment.