File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -268,11 +268,6 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
268268 -k" -nonzero -reindex -searchsorted -to_dict"
269269 RET=$(( $RET + $? )) ; echo $MSG " DONE"
270270
271- MSG=' Doctests generic.py' ; echo $MSG
272- pytest -q --doctest-modules pandas/core/generic.py \
273- -k" -_set_axis_name -_xs -describe -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -to_json -transpose -values -xs -to_clipboard"
274- RET=$(( $RET + $? )) ; echo $MSG " DONE"
275-
276271 MSG=' Doctests groupby.py' ; echo $MSG
277272 pytest -q --doctest-modules pandas/core/groupby/groupby.py -k" -cumcount -describe -pipe"
278273 RET=$(( $RET + $? )) ; echo $MSG " DONE"
@@ -313,6 +308,17 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
313308 pytest -q --doctest-modules pandas/core/arrays/boolean.py
314309 RET=$(( $RET + $? )) ; echo $MSG " DONE"
315310
311+ MSG=' Doctests base.py' ; echo $MSG
312+ pytest -q --doctest-modules pandas/core/base.py
313+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
314+
315+ MSG=' Doctests construction.py' ; echo $MSG
316+ pytest -q --doctest-modules pandas/core/construction.py
317+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
318+
319+ MSG=' Doctests generic.py' ; echo $MSG
320+ pytest -q --doctest-modules pandas/core/generic.py
321+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
316322fi
317323
318324# ## DOCSTRINGS ###
You can’t perform that action at this time.
0 commit comments