-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add after_script to ensure the documents are regenerated #3596
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
Add after_script to ensure the documents are regenerated #3596
Conversation
Presumably the automatic check on this is going to fail until #3595 is merged? This will be a good test case. |
Ah, yes! Let's see if this works as expected... |
Ouch...
|
It's |
Sorry, I misunderstood about the build stages.
|
Hmm, it's actually failed. I'm confused... https://travis-ci.org/tidyverse/ggplot2/jobs/604197809#L1227-L1232 |
@clauswilke It might take some time to figure out the proper settings here, so you don't need to wait for this to merge #3595. |
My guess is that explicit |
They say I should not use |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
It's a common mistake to forget to run
devtools::documents()
, but it's hard to detect them by reviewing on GitHub. It would be nice if it can be detected on Travis CI. This PR adds anafter_script
for this; the error might be false positive so it can be ignored by manually checking the CI results.