From 94cb163c6aac8039447040474c4172022e2c38b2 Mon Sep 17 00:00:00 2001 From: Anton Akhmerov Date: Sun, 6 Dec 2020 14:12:38 +0100 Subject: [PATCH] CI: stop treating warnings as errors in docs This is a temporary choice due to a bug in IPykernel https://github.com/ipython/ipykernel/issues/540 --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6f2d2e..3f3ad4e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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/ @@ -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: