Skip to content

Commit 7c3be35

Browse files
committed
change paths
1 parent bcde7c9 commit 7c3be35

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ jobs:
6868
. venv/bin/activate
6969
# Don't use -q, show warning summary"
7070
SPHINXOPTS="-W -n" spin docs
71-
if [[ $(find build/html -type f | wc -l) -lt 1000 ]]; then
72-
echo "doc build failed: build/html is empty"
71+
if [[ $(find doc/build/html -type f | wc -l) -lt 1000 ]]; then
72+
echo "doc build failed: doc/build/html is empty"
7373
exit -1
7474
fi
7575
@@ -93,6 +93,11 @@ jobs:
9393
. venv/bin/activate
9494
spin check-docs -v
9595
spin check-tutorials -v
96+
# Currently, this does two checks not done by check-docs:
97+
# - validates ReST blocks (via validate_rst_syntax)
98+
# - checks that all of a module's `__all__` is reflected in the
99+
# module-level docstring autosummary
100+
python tools/refguide_check.py -v
96101
97102
- persist_to_workspace:
98103
root: ~/repo

0 commit comments

Comments
 (0)