Skip to content

Commit 09b1c6c

Browse files
TomAugspurgertm9k1
authored andcommitted
CI: Quieter doctests (pandas-dev#23232)
1 parent 80551f0 commit 09b1c6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/code_checks.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,22 @@ fi
122122
if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
123123

124124
MSG='Doctests frame.py' ; echo $MSG
125-
pytest --doctest-modules -v pandas/core/frame.py \
125+
pytest -q --doctest-modules pandas/core/frame.py \
126126
-k"-axes -combine -itertuples -join -nlargest -nsmallest -nunique -pivot_table -quantile -query -reindex -reindex_axis -replace -round -set_index -stack -to_stata"
127127
RET=$(($RET + $?)) ; echo $MSG "DONE"
128128

129129
MSG='Doctests series.py' ; echo $MSG
130-
pytest --doctest-modules -v pandas/core/series.py \
130+
pytest -q --doctest-modules pandas/core/series.py \
131131
-k"-nonzero -reindex -searchsorted -to_dict"
132132
RET=$(($RET + $?)) ; echo $MSG "DONE"
133133

134134
MSG='Doctests generic.py' ; echo $MSG
135-
pytest --doctest-modules -v pandas/core/generic.py \
135+
pytest -q --doctest-modules pandas/core/generic.py \
136136
-k"-_set_axis_name -_xs -describe -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -resample -to_json -transpose -values -xs"
137137
RET=$(($RET + $?)) ; echo $MSG "DONE"
138138

139139
MSG='Doctests top-level reshaping functions' ; echo $MSG
140-
pytest --doctest-modules -v \
140+
pytest -q --doctest-modules \
141141
pandas/core/reshape/concat.py \
142142
pandas/core/reshape/pivot.py \
143143
pandas/core/reshape/reshape.py \

0 commit comments

Comments
 (0)