We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68f3efe commit 591cdc6Copy full SHA for 591cdc6
ci/code_checks.sh
@@ -80,6 +80,13 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then
80
flake8-rst doc/source --filename=*.rst --format="$FLAKE8_FORMAT"
81
RET=$(($RET + $?)) ; echo $MSG "DONE"
82
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
90
# Check that cython casting is of the form `<type>obj` as opposed to `<type> obj`;
91
# it doesn't make a difference, but we want to be internally consistent.
92
# Note: this grep pattern is (intended to be) equivalent to the python
0 commit comments