Skip to content

Commit 5d468d2

Browse files
test checking all frame docstrings with skipped ones
1 parent 9837682 commit 5d468d2

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

ci/doctests.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ if [ "$DOCTEST" ]; then
1212

1313
echo "Running doctests"
1414

15-
pytest --doctest-modules --ignore=pandas/tests -v pandas/core/frame.py
15+
# pytest --doctest-modules --ignore=pandas/tests -v pandas/core/frame.py
1616

17-
if [ $? -ne "0" ]; then
18-
RET=1
19-
fi
17+
# if [ $? -ne "0" ]; then
18+
# RET=1
19+
# fi
2020

2121

2222
# # top-level reshaping functions
@@ -37,13 +37,13 @@ if [ "$DOCTEST" ]; then
3737
# RET=1
3838
# fi
3939

40-
# # DataFrame docstrings
41-
# pytest --doctest-modules -v \
42-
# 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"
40+
# DataFrame docstrings
41+
pytest --doctest-modules -v pandas/core/frame.py \
42+
-k"-assign -axes -combine -isin -itertuples -join -nlargest -nsmallest -nunique -pivot_table -quantile -query -reindex -reindex_axis -replace -round -set_index -stack -to_dict -to_records -to_stata -transform"
4343

44-
# if [ $? -ne "0" ]; then
45-
# RET=1
46-
# fi
44+
if [ $? -ne "0" ]; then
45+
RET=1
46+
fi
4747

4848
# # Series docstrings
4949
# pytest --doctest-modules -v \

0 commit comments

Comments
 (0)