diff options
Diffstat (limited to '.circleci/config.yml')
-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/ |