Skip to content

Commit e8e66b7

Browse files
ShaharNavehroberthdevries
authored andcommitted
CI: Removed pattern check for specific modules (pandas-dev#31975)
1 parent bc76665 commit e8e66b7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ci/code_checks.sh

+2-4
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
@@ -294,8 +293,7 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
294293
MSG='Doctests interval classes' ; echo $MSG
295294
pytest -q --doctest-modules \
296295
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"
296+
pandas/core/arrays/interval.py
299297
RET=$(($RET + $?)) ; echo $MSG "DONE"
300298

301299
MSG='Doctests arrays'; echo $MSG

0 commit comments

Comments
 (0)