diff --git a/ci/code_checks.sh b/ci/code_checks.sh index 45b7db74fa409..838cf88300db5 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -377,5 +377,14 @@ if [[ -z "$CHECK" || "$CHECK" == "typing" ]]; then RET=$(($RET + $?)) ; echo $MSG "DONE" fi +### Checking for standardized documentation ### +echo "Checking which files in pandas/doc/source have standardized documentation" + +for entry in $(find ../doc/source/ -type f) +do + if grep -q Pandas "$entry" || grep -q *pandas* "$entry" ; then + echo "$entry" + fi +done exit $RET