We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1dee07 commit a07c287Copy full SHA for a07c287
ci/code_checks.sh
@@ -199,7 +199,7 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
199
200
# GH37053, Check for np.random.<method> instead of `from numpy.random import` or `from numpy import random`
201
MSG='Check for numpy.random-related imports' ; echo $MSG
202
- invgrep -R --include="*.py" -E "(from numpy.random import)|(from numpy import random)" pandas
+ invgrep -R --include="*.py" --exclude=_testing.py -E "(from numpy.random import)|(from numpy import random)" pandas
203
RET=$(($RET + $?)) ; echo $MSG "DONE"
204
205
# Check for the following code in the extension array base tests: `tm.assert_frame_equal` and `tm.assert_series_equal`
0 commit comments