File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,10 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
122
122
! grep -R --include=" *.py" --include=" *.pyx" --include=" *.rst" -E " \.\. (autosummary|contents|currentmodule|deprecated|function|image|important|include|ipython|literalinclude|math|module|note|raw|seealso|toctree|versionadded|versionchanged|warning):[^:]" ./pandas ./doc/source
123
123
RET=$(( $RET + $? )) ; echo $MSG " DONE"
124
124
125
+ MSG=' Check that the deprecated `assert_raises_regex` is not used (`pytest.raises(match=pattern)` should be used instead)' ; echo $MSG
126
+ ! grep -R --exclude=* .pyc --exclude=testing.py --exclude=test_testing.py assert_raises_regex pandas
127
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
128
+
125
129
MSG=' Check for modules that pandas should not import' ; echo $MSG
126
130
python -c "
127
131
import sys
You can’t perform that action at this time.
0 commit comments