-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
Get auth docs building #194
Conversation
For some reason, the docstrings for the auth classes aren't being built into the docs. Add a link from the main page to get things generated.
So here's the build error that has me perplexed: /home/travis/build/astropy/pyvo/docs/auth/index.rst.rst:19:autosummary: stub file not found 'pyvo.auth.authsession.AuthURLs'. Check your autosummary_generate setting. So, it should be pyvo.auth.authurls.AuthURLs is the python import path for that module, not authsession. I'm not sure where it's getting this path or how it is generating it, but obviously I am doing something wrong here. |
Hey @cbanek ! At the top of
What's going on is that automodapi thingk You might also want to import |
Codecov Report
@@ Coverage Diff @@
## master #194 +/- ##
==========================================
+ Coverage 70.81% 70.86% +0.05%
==========================================
Files 37 38 +1
Lines 3906 3913 +7
==========================================
+ Hits 2766 2773 +7
Misses 1140 1140
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formally ok, just a small remark: examples are still missing.
@cbanek Merged this - finally. Sorry for the delay. |
For some reason, the docstrings for the auth classes aren't
being built into the docs. Add a link from the main page to
get things generated.