File tree 1 file changed +11
-5
lines changed
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
268
268
-k" -nonzero -reindex -searchsorted -to_dict"
269
269
RET=$(( $RET + $? )) ; echo $MSG " DONE"
270
270
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
-
276
271
MSG=' Doctests groupby.py' ; echo $MSG
277
272
pytest -q --doctest-modules pandas/core/groupby/groupby.py -k" -cumcount -describe -pipe"
278
273
RET=$(( $RET + $? )) ; echo $MSG " DONE"
@@ -313,6 +308,17 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
313
308
pytest -q --doctest-modules pandas/core/arrays/boolean.py
314
309
RET=$(( $RET + $? )) ; echo $MSG " DONE"
315
310
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"
316
322
fi
317
323
318
324
# ## DOCSTRINGS ###
You can’t perform that action at this time.
0 commit comments