Skip to content

Commit 6bd5f3c

Browse files
committed
MAINT: Address reviewer comments
1 parent feb6f5a commit 6bd5f3c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ci/lint.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,13 @@ if [ "$LINT" ]; then
7272
echo "Linting *.c and *.h DONE"
7373

7474
echo "Check for invalid testing"
75-
grep -r -E --include '*.py' --exclude testing.py '(numpy|np)\.testing|(numpy|np)\.array_equal' pandas/tests
75+
76+
# Check for the following code in testing:
77+
#
78+
# np.testing
79+
# np.array_equal
80+
grep -r -E --include '*.py' --exclude testing.py '(numpy|np)(\.testing|\.array_equal)' pandas/tests/
81+
7682
if [ $? = "0" ]; then
7783
RET=1
7884
fi

0 commit comments

Comments
 (0)