Skip to content

Commit 12a7d65

Browse files
authored
Testing whole doctest, and not specific module (#31993)
1 parent 5377aef commit 12a7d65

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Diff for: ci/code_checks.sh

+3-5
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,7 @@ fi
259259
if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
260260

261261
MSG='Doctests frame.py' ; echo $MSG
262-
pytest -q --doctest-modules pandas/core/frame.py \
263-
-k" -itertuples -join -reindex -reindex_axis -round"
262+
pytest -q --doctest-modules pandas/core/frame.py
264263
RET=$(($RET + $?)) ; echo $MSG "DONE"
265264

266265
MSG='Doctests series.py' ; echo $MSG
@@ -293,9 +292,8 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
293292

294293
MSG='Doctests interval classes' ; echo $MSG
295294
pytest -q --doctest-modules \
296-
pandas/core/indexes/interval.py \
297-
pandas/core/arrays/interval.py \
298-
-k"-from_arrays -from_breaks -from_intervals -from_tuples -set_closed -to_tuples -interval_range"
295+
pandas/core/indexes/interval.py
296+
pandas/core/arrays/interval.py
299297
RET=$(($RET + $?)) ; echo $MSG "DONE"
300298

301299
MSG='Doctests arrays'; echo $MSG

0 commit comments

Comments
 (0)