From 3928eb770a34a3ddb49034c7933a53ce90ce4311 Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson Date: Sat, 14 Jan 2023 19:52:11 +0100 Subject: [PATCH] Add more locations for doc build deprecation warnings --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d79f244e052c..1ef7d91734f0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -176,10 +176,12 @@ commands: echo "No deprecation warnings in plot_types") (grep -rl DeprecationWarning doc/build/html/tutorials || echo "No deprecation warnings in tutorials") + (grep -rl DeprecationWarning doc/build/html/users || + echo "No deprecation warnings in users") # Save deprecations that are from this absolute directory, and # convert to repository-relative paths. (grep -Ero --no-filename "$PWD/.+DeprecationWarning.+$" \ - doc/build/html/{gallery,plot_types,tutorials} || echo) | \ + doc/build/html/{gallery,plot_types,tutorials,users} || echo) | \ sed "s~$PWD/~~" > doc/logs/sphinx-deprecations.log when: always - store_artifacts: