Skip to content

Commit 6601a2f

Browse files
authored
RLS 1.0.0: (repeat) Fix a link and improve test reliability (#701)
1 parent b84dc6b commit 6601a2f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ jobs:
5858
run: >
5959
pytest --durations=10 --cov=sphinx_book_theme --cov-report=xml --cov-report=term-missing
6060
61+
# Only upload to codecov on pull requests so that we don't trigger rate limit blocks
6162
- name: Upload to Codecov
62-
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7 && github.repository == 'executablebooks/sphinx-book-theme'
63+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.7 && github.repository == 'executablebooks/sphinx-book-theme' && github.event_name == 'pull_request'
6364
uses: codecov/codecov-action@v3.1.1
6465
with:
6566
name: ebp-sbt-pytests-py3.7
@@ -84,7 +85,9 @@ jobs:
8485
python -m pip install --upgrade pip
8586
pip install -e .[doc]
8687
88+
# Only check for broken links on pull requests so that we don't block releases
8789
- name: Check for broken links
90+
if: github.event_name == 'pull_request'
8891
run: >
8992
sphinx-build -b linkcheck docs docs/_build/linkcheck
9093

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ This updates to the latest PyData Sphinx Theme, which re-works some of the HTML
329329
## v0.0.36 2020-08-25
330330

331331
👌 IMPROVED: The main theme change in this release, is the addition of CSS styling for definition lists, including those created by [sphinx.ext.autodoc](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html).
332-
See [Definition and Field Lists](https://sphinx-book-theme.readthedocs.io/en/stable/reference/kitchen-sink/lists-and-tables.html), and the [Python API documentation](https://sphinx-book-theme.readthedocs.io/en/latest/reference/kitchen-sink/api.html).
332+
See [Definition and Field Lists](https://sphinx-book-theme.readthedocs.io/en/latest/reference/kitchen-sink/lists.html), and the [Python API documentation](https://sphinx-book-theme.readthedocs.io/en/latest/reference/kitchen-sink/api.html).
333333

334334
🔧 MAINTENANCE: Under the hood, there has also been work undertaken to improve the development environment for working with the package. Thanks to [@pradyunsg](https://github.com/pradyunsg).
335335

0 commit comments

Comments
 (0)