File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -122,13 +122,18 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
122122 # Check for imports from collections.abc instead of `from collections import abc`
123123 MSG=' Check for non-standard imports' ; echo $MSG
124124 invgrep -R --include=" *.py*" -E " from pandas.core.common import" pandas
125+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
125126 invgrep -R --include=" *.py*" -E " from pandas.core import common" pandas
127+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
126128 invgrep -R --include=" *.py*" -E " from collections.abc import" pandas
129+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
127130 invgrep -R --include=" *.py*" -E " from numpy import nan" pandas
131+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
128132
129133 # Checks for test suite
130134 # Check for imports from pandas.util.testing instead of `import pandas.util.testing as tm`
131135 invgrep -R --include=" *.py*" -E " from pandas.util.testing import" pandas/tests
136+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
132137 invgrep -R --include=" *.py*" -E " from pandas.util import testing as tm" pandas/tests
133138 RET=$(( $RET + $? )) ; echo $MSG " DONE"
134139
You can’t perform that action at this time.
0 commit comments