Skip to content
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

Support numpydoc validation without running sphinx #364

Closed
akaszynski opened this issue Jan 28, 2022 · 2 comments
Closed

Support numpydoc validation without running sphinx #364

akaszynski opened this issue Jan 28, 2022 · 2 comments

Comments

@akaszynski
Copy link

Is there a way to run the numpydoc validation without running sphinx? I'd like to have a separate CI step to validate docstrings for an entire directory (recursively), but I don't see an option to do this.

@rossbar
Copy link
Contributor

rossbar commented Jan 28, 2022

Yes, this is possible, e.g.

>>> from numpydoc.validate import validate
>>> vdict = validate("numpy.sum")
>>> vdict["errors"]
[('ES01', 'No extended summary found'),
 ('RT02',
  'The first line of the Returns section should contain only the type, unless multiple values are being returned'),
 ('SA04', 'Missing description for See Also "mean" reference'),
 ('SA04', 'Missing description for See Also "average" reference')]

Just replace "numpy.sum" with the function you want to run docstring validation on. See the docstring of validate for details.

@akaszynski
Copy link
Author

Thanks!

This inspired me for something that I've been needing for some time for pyvista and several pyansys projects. I've created a repo numpydoc-validation and a package to generate numpydoc validation reports . Please let me know if you or the rest of your team sees any issue with this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants