diff options
author | mattip <matti.picus@gmail.com> | 2019-03-15 10:15:40 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-03-15 10:15:40 +0200 |
commit | 8f778b881f8dad804dc884847784b9fbe36c23f5 (patch) | |
tree | 8ecb248934d1e2eff43d13ab60ee8cfc49385433 /.circleci | |
parent | 6b3ea20d3eea2813826adb35254347a99c094a50 (diff) | |
download | numpy-8f778b881f8dad804dc884847784b9fbe36c23f5.tar.gz |
BUILD: use 'quiet' when building docs
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index a54f85110..cc01e8851 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,14 +39,14 @@ jobs: . venv/bin/activate cd doc git submodule update --init - make html + SPHINXOPTS=-q make -e html - run: name: build neps command: | . venv/bin/activate cd doc/neps - make html + SPHINXOPTS=-q make -e html - store_artifacts: path: doc/build/html/ |