-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-16018: [Doc][Python] Run doctests on Python docstring examples (--doctest-cython) #13204
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
Conversation
|
|
…(--doctest-modules) A series of 3 PRs add `doctest` functionality to ensure that docstring examples are actually correct (and keep being correct). - [x] Add `--doctest-module` - [x] Add `--doctest-cython` #13204 - [x] Create a CI job #13216 This PR can be tested with `pytest --doctest-modules python/pyarrow`. Closes #13199 from AlenkaF/ARROW-16018 Lead-authored-by: Alenka Frim <frim.alenka@gmail.com> Co-authored-by: Alenka Frim <AlenkaF@users.noreply.github.com> Signed-off-by: Joris Van den Bossche <jorisvandenbossche@gmail.com>
dbddde7 to
7c2ef42
Compare
7c2ef42 to
530d827
Compare
|
Benchmark runs are scheduled for baseline = 5eaae54 and contender = 9a7cc52. 9a7cc52 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Adding
--doctest-cythonfunctionality which will be run on the CI with a follow-up PR.This PR can be tested with
pytest --doctest-cython python/pyarrow.