-
Notifications
You must be signed in to change notification settings - Fork 21
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
Fix pkgdown #482
Fix pkgdown #482
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #482 +/- ##
========================================
Coverage 81.21% 81.21%
========================================
Files 20 20
Lines 1725 1725
========================================
Hits 1401 1401
Misses 324 324 ☔ View full report in Codecov by Sentry. |
@seabbs This is in principle fine to review as a hot-fix of the failing pkgdown. I do think, however, that there is more thinking to be done to re-design the pkgdown yaml and make sure we have everything in the categories we want and with the appropriate keywords. Option 1 would be to review and merge now to get the CI checks succeeding again. It feels aesthetically pleasing to merge it now to get all CI tests to pass again, but ultimately happy to go with either. Do you have preferences? Update: I think I'd more strongly prefer to merge this now to keep CI from failing which makes me very sad every time I see it... |
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.
LGTM. I agree we should do a second issue/PR aimed at finalising the structure.
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.
LGTM. I agree we should do a second issue/PR aimed at finalising the structure.
Currently, building the pkgdown fails due to missing keywords. This PR fixes this.
In addition it also
score_*
anymore and we have some functionsplot.*
instead ofplot_
.)@keywords internal
to@keywords something-else
it starts complaining about documentation issues that it didn't complain about before. So there are also two small fixes (1 typo + 1 undocumented argument)Note: I noticed a lot of linting issues. I'd say it's cleaner to address them in their own PR, so I created an issue for it: #485