diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2020-03-28 22:39:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 00:39:17 +0300 |
commit | 078ac01a85c4db46e7f148829c2e0d0e0f30c36f (patch) | |
tree | 3d49142c3bbeb20628e811c1708d96459e221bf2 /.circleci | |
parent | 243dc1e90e59daf18b17a6a1ebb705cc7bc66e92 (diff) | |
download | numpy-078ac01a85c4db46e7f148829c2e0d0e0f30c36f.tar.gz |
DOC, TST: enable refguide_check in circleci (#15848)
* DOC: fix traceback message to pass refguide_check
* DOC, TST: add refguide_check to circleci
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 38695bdff..c3d4352e8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,6 +33,7 @@ jobs: pip install cython pip install . pip install scipy + pip install pandas - run: name: create release notes @@ -42,12 +43,19 @@ jobs: VERSION=$(python -c "import setup; print(setup.VERSION)") towncrier --version $VERSION --yes ./tools/ci/test_all_newsfragments_used.py + + - run: + name: run doctests on documentation + command: | + . venv/bin/activate + (cd doc ; git submodule update --init) + python tools/refguide_check.py --rst + - run: name: build devdocs command: | . venv/bin/activate cd doc - git submodule update --init SPHINXOPTS=-q make -e html - run: |