ARROW-16018: [Doc][Python] Run doctests on Python docstring examples (--doctest-cython)#13204
ARROW-16018: [Doc][Python] Run doctests on Python docstring examples (--doctest-cython)#13204AlenkaF wants to merge 9 commits intoapache:masterfrom
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 <[email protected]> Co-authored-by: Alenka Frim <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
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.