From bd5c459107f92beb7479f892beb2afb20428c421 Mon Sep 17 00:00:00 2001 From: Deepak Rangarajan Date: Thu, 29 Aug 2024 11:20:55 -0400 Subject: [PATCH] treat warnings as errors in the CI --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af197c9..469c5a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,8 +16,8 @@ docs:userguide: image: sphinxdoc/sphinx:latest script: - pip install -q sphinx_rtd_theme sphinx_tabs sphinxcontrib-bibtex - - sphinx-build -b html docs/source_docs/ build/docs - - sphinx-build -b html docs/picvva/ build/picvva + - sphinx-build -W -b html docs/source_docs/ build/docs + - sphinx-build -W -b html docs/picvva/ build/picvva stage: build-docs artifacts: name: $CI_JOB_NAME -- GitLab