8000 DOC/CI: run doctests on travis by jorisvandenbossche · Pull Request #19952 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC/CI: run doctests on travis #19952

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
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f17747f
let doctest fail travis if they fail
jorisvandenbossche Mar 1, 2018
d24bbd2
remove check for building docs, we also want to test if docstrings ch…
jorisvandenbossche Mar 1, 2018
47f7034
Add Series and DataFrame doctests
jorisvandenbossche Mar 1, 2018
67f4ae8
try propagating exit value
jorisvandenbossche Mar 1, 2018
5caf04b
move to separate file
jorisvandenbossche Apr 9, 2018
2d4c6ac
Merge remote-tracking branch 'upstream/master' into doctests-travis
jorisvandenbossche Apr 9, 2018
10cf824
add read functions
jorisvandenbossche Apr 9, 2018
32f6d1c
run doctests on python 3.6 build
jorisvandenbossche Apr 9, 2018
5833f86
ensure doctest collection does not fail
jorisvandenbossche Apr 10, 2018
1d8e592
temp: check running all doctests on travis
jorisvandenbossche Apr 10, 2018
3add36c
cummax giving core dump
jorisvandenbossche Apr 10, 2018
a65ee48
Merge remote-tracking branch 'upstream/master' into doctests-travis
jorisvandenbossche Jul 8, 2018
9317d31
try
jorisvandenbossche Jul 8, 2018
7845ea3
remove snippet that causes segfault
jorisvandenbossche Jul 9, 2018
6cc5a96
Merge remote-tracking branch 'upstream/master' into doctests-travis
jorisvandenbossche Aug 15, 2018
9837682
fix DataFrame docstring
jorisvandenbossche Aug 16, 2018
5d468d2
test checking all frame docstrings with skipped ones
jorisvandenbossche Aug 16, 2018
6826dcf
add series + generic
jorisvandenbossche Aug 16, 2018
834c750
Merge branch 'master' of https://github.com/pandas-dev/pandas 8000 into do…
jorisvandenbossche Aug 16, 2018
c03c895
also skip xs
jorisvandenbossche Aug 16, 2018
d3d5a50
clean-up
jorisvandenbossche Aug 16, 2018
4884f03
add short docs about testing/validating docstrings
jorisvandenbossche Aug 16, 2018
caa43f1
typo
jorisvandenbossche Aug 16, 2018
25bc158
skip describe
jorisvandenbossche Aug 16, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
also skip xs
  • Loading branch information
jorisvandenbossche committed Aug 16, 2018
commit c03c8953d0c44189c3a2bedd2102b0419d73635b
2 changes: 1 addition & 1 deletion ci/doctests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if [ "$DOCTEST" ]; then
fi

pytest --doctest-modules -v pandas/core/generic.py \
-k"-_set_axis_name -_xs -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -resample -sample -to_json -to_xarray -transform -transpose -values"
-k"-_set_axis_name -_xs -droplevel -groupby -interpolate -pct_change -pipe -reindex -reindex_axis -resample -sample -to_json -to_xarray -transform -transpose -values -xs"

if [ $? -ne "0" ]; then
RET=1
Expand Down
0