Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 649123b

Browse files
committed
Add more locations for doc build deprecation warnings
1 parent 99d39bd commit 649123b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,18 @@ commands:
176176
echo "No deprecation warnings in plot_types")
177177
(grep -rl DeprecationWarning doc/build/html/tutorials ||
178178
echo "No deprecation warnings in tutorials")
179+
(grep -rl DeprecationWarning doc/build/html/users ||
180+
echo "No deprecation warnings in users")
181+
(grep -rl DeprecationWarning doc/build/html/api/prev_api_changes ||
182+
echo "No deprecation warnings in prev_api_changes")
183+
(grep -rl DeprecationWarning doc/build/html/api/next_api_changes ||
184+
echo "No deprecation warnings in next_api_changes")
185+
(grep -rl DeprecationWarning doc/build/html/users ||
186+
echo "No deprecation warnings in users")
179187
# Save deprecations that are from this absolute directory, and
180188
# convert to repository-relative paths.
181189
(grep -Ero --no-filename "$PWD/.+DeprecationWarning.+$" \
182-
doc/build/html/{gallery,plot_types,tutorials} || echo) | \
190+
doc/build/html/{gallery,plot_types,tutorials,users,api/next_api_changes,api/prev_api_changes} || echo) | \
183191
sed "s~$PWD/~~" > doc/logs/sphinx-deprecations.log
184192
when: always
185193
- store_artifacts:

0 commit comments

Comments
 (0)