File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -284,10 +284,6 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
284284 pytest -q --doctest-modules pandas/core/generic.py
285285 RET=$(( $RET + $? )) ; echo $MSG " DONE"
286286
287- MSG=' Doctests groupby' ; echo $MSG
288- pytest -q --doctest-modules pandas/core/groupby/
289- RET=$(( $RET + $? )) ; echo $MSG " DONE"
290-
291287 MSG=' Doctests series.py' ; echo $MSG
292288 pytest -q --doctest-modules pandas/core/series.py
293289 RET=$(( $RET + $? )) ; echo $MSG " DONE"
@@ -306,6 +302,10 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
306302 pytest -q --doctest-modules pandas/core/dtypes/
307303 RET=$(( $RET + $? )) ; echo $MSG " DONE"
308304
305+ MSG=' Doctests groupby' ; echo $MSG
306+ pytest -q --doctest-modules pandas/core/groupby/
307+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
308+
309309 MSG=' Doctests indexes' ; echo $MSG
310310 pytest -q --doctest-modules pandas/core/indexes/
311311 RET=$(( $RET + $? )) ; echo $MSG " DONE"
You can’t perform that action at this time.
0 commit comments