@@ -12,39 +12,45 @@ if [ "$DOCTEST" ]; then
12
12
13
13
echo " Running doctests"
14
14
15
- # top-level reshaping functions
16
- pytest --doctest-modules -v \
17
- pandas/core/reshape/concat.py \
18
- pandas/core/reshape/pivot.py \
19
- pandas/core/reshape/reshape.py \
20
- pandas/core/reshape/tile.py
21
-
15
+ pytest --doctest-modules --ignore=pandas/tests -v pandas
22
16
if [ $? -ne " 0" ]; then
23
17
RET=1
24
18
fi
25
19
26
- # top-level io functionality
27
- pytest --doctest-modules -v pandas/io/* -k " read_"
28
20
29
- if [ $? -ne " 0" ]; then
30
- RET=1
31
- fi
21
+ # # top-level reshaping functions
22
+ # pytest --doctest-modules -v \
23
+ # pandas/core/reshape/concat.py \
24
+ # pandas/core/reshape/pivot.py \
25
+ # pandas/core/reshape/reshape.py \
26
+ # pandas/core/reshape/tile.py
32
27
33
- # DataFrame docstrings
34
- pytest --doctest-modules -v \
35
- pandas/core/frame.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 "
28
+ # if [ $? -ne "0" ]; then
29
+ # RET=1
30
+ # fi
36
31
37
- if [ $? -ne " 0" ]; then
38
- RET=1
39
- fi
32
+ # # top-level io functionality
33
+ # pytest --doctest-modules -v pandas/io/* -k "read_"
40
34
41
- # Series docstrings
42
- pytest --doctest-modules -v \
43
- pandas/core/series.py -k " -agg -apply -map -nlargest -nonzero -nsmallest -reindex -replace -searchsorted -to_dict -to_excel "
35
+ # if [ $? -ne "0" ]; then
36
+ # RET=1
37
+ # fi
44
38
45
- if [ $? -ne " 0" ]; then
46
- RET=1
47
- fi
39
+ # # DataFrame docstrings
40
+ # pytest --doctest-modules -v \
41
+ # pandas/core/frame.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"
42
+
43
+ # if [ $? -ne "0" ]; then
44
+ # RET=1
45
+ # fi
46
+
47
+ # # Series docstrings
48
+ # pytest --doctest-modules -v \
49
+ # pandas/core/series.py -k"-agg -apply -map -nlargest -nonzero -nsmallest -reindex -replace -searchsorted -to_dict -to_excel"
50
+
51
+ # if [ $? -ne "0" ]; then
52
+ # RET=1
53
+ # fi
48
54
49
55
else
50
56
echo " NOT running doctests"
0 commit comments