File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -279,8 +279,8 @@ 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
284
RET=$(( $RET + $? )) ; echo $MSG " DONE"
285
285
286
286
MSG=' Doctests reshaping functions' ; echo $MSG
@@ -323,6 +323,10 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
323
323
MSG=' Doctests tseries' ; echo $MSG
324
324
pytest -q --doctest-modules pandas/tseries/
325
325
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"
326
330
fi
327
331
328
332
# ## DOCSTRINGS ###
You can’t perform that action at this time.
0 commit comments