10000 DOC: frame.py doctest fixing by stijnvanhoey · Pull Request #25097 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: frame.py doctest fixing #25097

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Feb 3, 2019
Merged
Prev Previous commit
Next Next commit
Add doctests to code check
  • Loading branch information
stijnvanhoey committed Feb 2, 2019
commit ac15ef24797cb3a248d559d077844c4d0819451a
2 changes: 1 addition & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ if [[ -z "$CHECK" || "$CHECK" == "doctests" ]]; then

MSG='Doctests frame.py' ; echo $MSG
pytest -q --doctest-modules pandas/core/frame.py \
-k"-axes -combine -itertuples -join -pivot_table -query -reindex -reindex_axis -round"
-k" -itertuples -join -reindex -reindex_axis -round"
RET=$(($RET + $?)) ; echo $MSG "DONE"

MSG='Doctests series.py' ; echo $MSG
Expand Down
0