@@ -279,8 +279,12 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
279
279
pytest -q --doctest-modules pandas/core/groupby/groupby.py -k" -cumcount -describe -pipe"
280
280
RET=$(( $RET + $? )) ; echo $MSG " DONE"
281
281
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/
284
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
285
+
286
+ MSG=' Doctests util' ; echo $MSG
287
+ pytest -q --doctest-modules pandas/core/util/
284
288
RET=$(( $RET + $? )) ; echo $MSG " DONE"
285
289
286
290
MSG=' Doctests reshaping functions' ; echo $MSG
@@ -323,6 +327,18 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
323
327
MSG=' Doctests tseries' ; echo $MSG
324
328
pytest -q --doctest-modules pandas/tseries/
325
329
RET=$(( $RET + $? )) ; echo $MSG " DONE"
330
+
331
+ MSG=' Doctests sparse' ; echo $MSG
332
+ pytest -q --doctest-modules pandas/core/sparse/
333
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
334
+
335
+ MSG=' Doctests array_algos' ; echo $MSG
336
+ pytest -q --doctest-modules pandas/core/array_algos/
337
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
338
+
339
+ MSG=' Doctests computation' ; echo $MSG
340
+ pytest -q --doctest-modules pandas/core/computation/
341
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
326
342
fi
327
343
328
344
# ## DOCSTRINGS ###
0 commit comments