-
Notifications
You must be signed in to change notification settings - Fork 263
Open
Description
Right now, our docstrings reference tests from modules test_<something>_api.py
. See for example:
.. literalinclude:: ../../python/cuda_cccl/tests/parallel/test_transform.py |
However, we now have a dedicated examples/
directory containing example files (which are also tested on CI):
We should:
- Move tests from out of
test_<something>_api.py
files, either into the correspondingtest_<something>.py
file, or to the corresponding example file (depending on whether they are currently referenced in docstrings) - Change existing docstrings to exclusively reference examples
Copilot