File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,13 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then
140
140
-k" -crosstab -pivot_table -cut"
141
141
RET=$(( $RET + $? )) ; echo $MSG " DONE"
142
142
143
+ MSG=' Doctests interval classes' ; echo $MSG
144
+ pytest --doctest-modules -v \
145
+ pandas/core/indexes/interval.py \
146
+ pandas/core/arrays/interval.py \
147
+ -k" -from_arrays -from_breaks -from_intervals -from_tuples -get_loc -set_closed -to_tuples -interval_range"
148
+ RET=$(( $RET + $? )) ; echo $MSG " DONE"
149
+
143
150
fi
144
151
145
152
exit $RET
Original file line number Diff line number Diff line change 97
97
"""
98
98
99
99
100
+ # TODO(jschendel) use a more direct call in Examples when made public (GH22860)
100
101
@Appender (_interval_shared_docs ['class' ] % dict (
101
102
klass = "IntervalArray" ,
102
103
summary = "Pandas array for interval data that are closed on the same side." ,
You can’t perform that action at this time.
0 commit comments