Skip to content

Commit 0fbdf48

Browse files
authored
CI: add doctest check for done modules (#33175)
1 parent 30724b9 commit 0fbdf48

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

ci/code_checks.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
279279
pytest -q --doctest-modules pandas/core/groupby/groupby.py -k"-cumcount -describe -pipe"
280280
RET=$(($RET + $?)) ; echo $MSG "DONE"
281281

282-
MSG='Doctests datetimes.py' ; echo $MSG
283-
pytest -q --doctest-modules pandas/core/tools/datetimes.py
282+
MSG='Doctests tools' ; echo $MSG
283+
pytest -q --doctest-modules pandas/core/tools/
284284
RET=$(($RET + $?)) ; echo $MSG "DONE"
285285

286286
MSG='Doctests reshaping functions' ; echo $MSG
@@ -323,6 +323,10 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
323323
MSG='Doctests tseries' ; echo $MSG
324324
pytest -q --doctest-modules pandas/tseries/
325325
RET=$(($RET + $?)) ; echo $MSG "DONE"
326+
327+
MSG='Doctests computation' ; echo $MSG
328+
pytest -q --doctest-modules pandas/core/computation/
329+
RET=$(($RET + $?)) ; echo $MSG "DONE"
326330
fi
327331

328332
### DOCSTRINGS ###

0 commit comments

Comments
 (0)