Skip to content

Commit 8230f11

Browse files
committed
add check to code_checks.sh
1 parent e2416a0 commit 8230f11

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ci/code_checks.sh

+4
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
152152
invgrep -R --include="*.py" --include="*.pyx" -E "class\s\S*\(object\):" pandas scripts
153153
RET=$(($RET + $?)) ; echo $MSG "DONE"
154154

155+
MSG='Check for empty class parenteses' ; echo $MSG
156+
invgrep -R --include="*.py" --include="*.pyx" -E "class\s\S*\(\):" pandas scripts
157+
RET=$(($RET + $?)) ; echo $MSG "DONE"
158+
155159
MSG='Check for backticks incorrectly rendering because of missing spaces' ; echo $MSG
156160
invgrep -R --include="*.rst" -E "[a-zA-Z0-9]\`\`?[a-zA-Z0-9]" doc/source/
157161
RET=$(($RET + $?)) ; echo $MSG "DONE"

0 commit comments

Comments
 (0)