File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 122
122
if [[ -z " $CHECK " || " $CHECK " == " doctests" ]]; then
123
123
124
124
MSG=' Doctests frame.py' ; echo $MSG
125
- pytest -- doctest-modules -v pandas/core/frame.py \
125
+ pytest -q -- doctest-modules pandas/core/frame.py \
126
126
-k" -axes -combine -itertuples -join -nlargest -nsmallest -nunique -pivot_table -quantile -query -reindex -reindex_axis -replace -round -set_index -stack -to_stata"
127
127
RET=$(( $RET + $? )) ; echo $MSG " DONE"
128
128
129
129
MSG=' Doctests series.py' ; echo $MSG
130
- pytest -- doctest-modules -v pandas/core/series.py \
130
+ pytest -q -- doctest-modules pandas/core/series.py \
131
131
-k" -nonzero -reindex -searchsorted -to_dict"
132
132
RET=$(( $RET + $? )) ; echo $MSG " DONE"
133
133
134
134
MSG=' Doctests generic.py' ; echo $MSG
135
- pytest -- doctest-modules -v pandas/core/generic.py \
135
+ pytest -q -- doctest-modules pandas/core/generic.py \
136
136
-k" -_set_axis_name -_xs -describe -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -resample -to_json -transpose -values -xs"
137
137
RET=$(( $RET + $? )) ; echo $MSG " DONE"
138
138
139
139
MSG=' Doctests top-level reshaping functions' ; echo $MSG
140
- pytest -- doctest-modules -v \
140
+ pytest -q -- doctest-modules \
141
141
pandas/core/reshape/concat.py \
142
142
pandas/core/reshape/pivot.py \
143
143
pandas/core/reshape/reshape.py \
You can’t perform that action at this time.
0 commit comments