File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,24 @@ if [ "$DOC" ]; then
61
61
pandas/core/reshape/reshape.py \
62
62
pandas/core/reshape/tile.py
63
63
64
- RET=" $? "
64
+ if [ $? -ne " 0" ]; then
65
+ RET=1
66
+ fi
65
67
68
+ # DataFrame docstrings
69
+ pytest --doctest-modules pandas/core/series.py -k" -agg -apply -applymap -assign -eval -isin -itertuples -join -merge -nlargest -nsmallest -nunique -pivot -pivot_table -quantile -query -reindex -reindex_axis -replace -round -select_dtypes -set_index -stack -to_dict -to_excel -to_stata"
70
+
71
+ if [ $? -ne " 0" ]; then
72
+ RET=1
73
+ fi
74
+
75
+ # Series docstrings
76
+ pytest --doctest-modules pandas/core/series.py -k" -agg -apply -map -nlargest -nonzero -nsmallest -reindex -replace -searchsorted -sort_values -to_dict -to_excel"
77
+
78
+ if [ $? -ne " 0" ]; then
79
+ RET=1
80
+ fi
81
+
66
82
fi
67
83
68
84
exit " $RET "
Original file line number Diff line number Diff line change @@ -32,3 +32,4 @@ markers =
32
32
slow: mark a test as slow
33
33
network: mark a test as network
34
34
high_memory: mark a test as a high-memory only
35
+ doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
You can’t perform that action at this time.
0 commit comments