Skip to content

Commit d2525ce

Browse files
author
MomIsBestFriend
committed
CI: Add doctest check for done modules
1 parent 30724b9 commit d2525ce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ci/code_checks.sh

+8
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,14 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
323323
MSG='Doctests tseries' ; echo $MSG
324324
pytest -q --doctest-modules pandas/tseries/
325325
RET=$(($RET + $?)) ; echo $MSG "DONE"
326+
327+
MSG='Doctests sparse' ; echo $MSG
328+
pytest -q --doctest-modules pandas/core/sparse/
329+
RET=$(($RET + $?)) ; echo $MSG "DONE"
330+
331+
MSG='Doctests array_algos' ; echo $MSG
332+
pytest -q --doctest-modules pandas/core/array_algos/
333+
RET=$(($RET + $?)) ; echo $MSG "DONE"
326334
fi
327335

328336
### DOCSTRINGS ###

0 commit comments

Comments
 (0)