Skip to content

Commit 591cdc6

Browse files
committed
Fixed wrong diff
1 parent 68f3efe commit 591cdc6

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ci/code_checks.sh

+7
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,13 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
8080
flake8-rst doc/source --filename=*.rst --format="$FLAKE8_FORMAT"
8181
RET=$(($RET + $?)) ; echo $MSG "DONE"
8282

83+
# Check if pandas is referenced as pandas, not *pandas* or Pandas
84+
MSG='Checking if pandas reference is standardized or not' ; echo $MSG
85+
grep -nr '*pandas*|Pandas' doc/*
86+
grep -nr '*pandas*|Pandas' web/*
87+
RET=$(($RET + $?)) ; echo $MSG "DONE"
88+
89+
8390
# Check that cython casting is of the form `<type>obj` as opposed to `<type> obj`;
8491
# it doesn't make a difference, but we want to be internally consistent.
8592
# Note: this grep pattern is (intended to be) equivalent to the python

0 commit comments

Comments
 (0)