File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 122122if [[ -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 \
You can’t perform that action at this time.
0 commit comments