Skip to content

Commit

Permalink
test: Ignore LHEP DOI URLs during Sphinx linkcheck (#1866)
Browse files Browse the repository at this point in the history
* Ignore DOI URLs for LHEP from Sphinx linkcheck tests as the DOI for
'SModelS database update v1.2.3' (https://doi.org/10.31526/lhep.2020.158)
is causing 'ConnectTimeoutError's in CI.
   - This is only happening in GitHub Actions CI. It was not reproducible locally.
* zfit Issue 120 was moved to zfit-development Issue 56 on 2020-03-12. Updating
the Issue URL avoids a 404 status and a 'broken' linkcheck status.
  • Loading branch information
matthewfeickert authored May 25, 2022
1 parent 461d368 commit 0409ab5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,5 +464,9 @@ def setup(app):
}

# c.f. https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-the-linkcheck-builder
linkcheck_ignore = ['cli.html#pyhf-xml2json']
linkcheck_ignore = [
'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/.*',
]
linkcheck_retries = 50
4 changes: 2 additions & 2 deletions docs/governance/ROADMAP.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ Roadmap

4. **Research**

- |uncheck| Add pyfitcore/Statisfactory integrations (Issue #344, `zfit
Issue 120 <https://github.com/zfit/zfit/issues/120>`__) [2019-Q4]
- |uncheck| Add pyfitcore/Statisfactory integrations (Issue #344, `zfit-development
Issue 56 <https://github.com/zfit/zfit-development/issues/56>`__) [2019-Q4]
- |uncheck| Hardware acceleration scaling studies (Issues #93, #301)
[2019-Q4 → 2020-Q1]
- |uncheck| Speedup through Numba (Issue #364) [2019-Q3 → 2019-Q4]
Expand Down

0 comments on commit 0409ab5

Please sign in to comment.