We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30724b9 commit d2525ceCopy full SHA for d2525ce
ci/code_checks.sh
@@ -323,6 +323,14 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
323
MSG='Doctests tseries' ; echo $MSG
324
pytest -q --doctest-modules pandas/tseries/
325
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
334
fi
335
336
### DOCSTRINGS ###
0 commit comments