Skip to content

Commit

Permalink
CI: stop treating warnings as errors in docs
Browse files Browse the repository at this point in the history
This is a temporary choice due to a bug in IPykernel
ipython/ipykernel#540
  • Loading branch information
akhmerov committed Jan 9, 2024
1 parent 9583bd7 commit 94cb163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ build documentation:
stage: test
script:
- python -c 'from matplotlib import pyplot' # Pre-generate font cache
- make -C doc clean; make -C doc html SPHINXOPTS='-A website_deploy=True -n -W -D jupyter_execute_default_kernel=kwant-latest' SOURCE_LINK_TEMPLATE="$CI_PROJECT_URL"/blob/\$\$r/\$\$f
- make -C doc clean; make -C doc html SPHINXOPTS='-A website_deploy=True -n -D jupyter_execute_default_kernel=kwant-latest' SOURCE_LINK_TEMPLATE="$CI_PROJECT_URL"/blob/\$\$r/\$\$f
artifacts:
paths:
- doc/build/html/
Expand All @@ -230,7 +230,7 @@ build PDF documentation:
stage: test
script:
- python -c 'from matplotlib import pyplot' # Pre-generate font cache
- make -C doc latex SPHINXOPTS='-n -W -D jupyter_execute_default_kernel=kwant-latest'
- make -C doc latex SPHINXOPTS='-n -D jupyter_execute_default_kernel=kwant-latest'
- cd doc/build/latex
- make all-pdf
artifacts:
Expand Down

0 comments on commit 94cb163

Please sign in to comment.