File tree 1 file changed +13
-7
lines changed
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -12,25 +12,31 @@ if [ "$LINT" ]; then
12
12
13
13
echo " Running doctests"
14
14
15
- pytest --doctest-modules \
16
- pandas/core/reshape/concat.py \
17
- pandas/core/reshape/pivot.py \
18
- pandas/core/reshape/reshape.py \
19
- pandas/core/reshape/tile.py -v
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
20
21
21
22
if [ $? -ne " 0" ]; then
22
23
RET=1
23
24
fi
24
25
26
+ # top-level io functionality
27
+ pytest --doctest-modules -v pandas/io/* -k " read_"
28
+
25
29
# DataFrame docstrings
26
- pytest --doctest-modules 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" -v
30
+ pytest --doctest-modules -v \
31
+ 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"
27
32
28
33
if [ $? -ne " 0" ]; then
29
34
RET=1
30
35
fi
31
36
32
37
# Series docstrings
33
- pytest --doctest-modules pandas/core/series.py -k" -agg -apply -map -nlargest -nonzero -nsmallest -reindex -replace -searchsorted -sort_values -to_dict -to_excel" -v
38
+ pytest --doctest-modules -v \
39
+ pandas/core/series.py -k" -agg -apply -map -nlargest -nonzero -nsmallest -reindex -replace -searchsorted -to_dict -to_excel"
34
40
35
41
if [ $? -ne " 0" ]; then
36
42
RET=1
You can’t perform that action at this time.
0 commit comments