Skip to content

Commit

Permalink
🚇🩹 Workaround to fix pydata_sphinx_theme error on linkcheck
Browse files Browse the repository at this point in the history
Extension error (pydata_sphinx_theme.pygments):
Handler <function overwrite_pygments_css at 0x7f93feb0e4d0> for event 'build-finished' threw an exception (exception: [Errno 2] No such file or directory: '/home/runner/work/pyglotaran-extras/pyglotaran-extras/docs/_build/linkcheck/_static/pygments.css')
make: *** [Makefile:25: linkcheck] Error 2
make: Leaving directory '/home/runner/work/pyglotaran-extras/pyglotaran-extras/docs'
  • Loading branch information
s-weigand committed Jan 18, 2025
1 parent 3650143 commit 7cbb0a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ jobs:
run: pip freeze

- name: Build docs
run: make --directory=docs clean linkcheck
run: |
mkdir -p docs/_build/linkcheck/_static
make --directory=docs clean linkcheck
test:
name: Test pyglotaran stable
Expand Down

0 comments on commit 7cbb0a0

Please sign in to comment.