Skip to content

Commit a07c287

Browse files
committed
UPD: code_checks.sh
1 parent e1dee07 commit a07c287

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/code_checks.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
199199

200200
# GH37053, Check for np.random.<method> instead of `from numpy.random import` or `from numpy import random`
201201
MSG='Check for numpy.random-related imports' ; echo $MSG
202-
invgrep -R --include="*.py" -E "(from numpy.random import)|(from numpy import random)" pandas
202+
invgrep -R --include="*.py" --exclude=_testing.py -E "(from numpy.random import)|(from numpy import random)" pandas
203203
RET=$(($RET + $?)) ; echo $MSG "DONE"
204204

205205
# Check for the following code in the extension array base tests: `tm.assert_frame_equal` and `tm.assert_series_equal`

0 commit comments

Comments
 (0)