diff options
author | mattip <matti.picus@gmail.com> | 2020-10-07 13:18:08 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-10-07 13:18:08 +0300 |
commit | 16934bee9bcb15f4a6a9946dc710a8a8fd535286 (patch) | |
tree | 4de8c06354b93d62bb06bb1c5a96ce72f41a5c5b /.circleci | |
parent | 2b05b8f5e82c309858ae23aceddfe15c80e43f0a (diff) | |
download | numpy-16934bee9bcb15f4a6a9946dc710a8a8fd535286.tar.gz |
BLD: don't use -q in sphinx build
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 7fd46a931..d77cde59b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -52,13 +52,10 @@ jobs: - run: name: build devdocs w/ref warnings command: | - set +e - # allow this to fail for now: issue 13114 . venv/bin/activate cd doc - SPHINXOPTS="-q -n" make -e html - # clear the error - echo ok + # Don't use -q, show warning summary" + SPHINXOPTS="-n" make -e html || echo "ignoring errors for now, see gh-13114" - run: name: build devdocs |