Skip to content

Commit 4d66fa8

Browse files
author
MomIsBestFriend
committed
Added checks to the CI
1 parent f3dd043 commit 4d66fa8

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

ci/code_checks.sh

+11-5
Original file line numberDiff line numberDiff 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"
316322
fi
317323

318324
### DOCSTRINGS ###

0 commit comments

Comments
 (0)