Skip to content

Commit 1fad1fb

Browse files
author
MomIsBestFriend
committed
Moved doctest check to the correct place
1 parent d352ad8 commit 1fad1fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/code_checks.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)