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