We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb6f5a commit 6bd5f3cCopy full SHA for 6bd5f3c
ci/lint.sh
@@ -72,7 +72,13 @@ if [ "$LINT" ]; then
72
echo "Linting *.c and *.h DONE"
73
74
echo "Check for invalid testing"
75
- grep -r -E --include '*.py' --exclude testing.py '(numpy|np)\.testing|(numpy|np)\.array_equal' pandas/tests
+
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
82
if [ $? = "0" ]; then
83
RET=1
84
fi
0 commit comments