You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using devtools 1.13.6 on a Windows 10 machine. It has happened to me multiple times now where I run devtools::check() and some rhub checks, get 0 Errors | 0 Warnings | 0 Notes, and then submit to CRAN and get either warnings or notes that I hadn't seen before and have my package rejected:
For example-
Bad URLs (not found with devtools, but spotted by CRAN's R CMD CHECK)
Found the following (possibly) invalid URLs:
URL: https://indrajeetpatil.github.io/ggstatsplot/articles/ggspiestats.html
From: inst/doc/ggcoefstats.html
Status: 404
Message: Not Found
Unused dependencies (not found by devtools, but by rhub)
Am I doing something wrong? Are there some other checks I should be running with devtools, in addition to devtools::check() and devtools::check_win_devel() that can help me catch errors like these?
The text was updated successfully, but these errors were encountered:
devtools::check() by default does not run the 'version' or 'incoming' checks, because they take a while to run and have to check CRANs or other external servers. You can run them by passing devtools::check(check_version = TRUE)
devtools::check_win_devel() runs on win-builder, which is an identical setup to the CRANs autocheck makines, so it will give you the same results as what you would get when submitting to CRAN.
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/
lockbot
locked and limited conversation to collaborators
Jan 14, 2019
I am using devtools
1.13.6
on a Windows 10 machine. It has happened to me multiple times now where I rundevtools::check()
and somerhub
checks, get0 Errors | 0 Warnings | 0 Notes
, and then submit to CRAN and get either warnings or notes that I hadn't seen before and have my package rejected:For example-
devtools
, but spotted by CRAN'sR CMD CHECK
)devtools
, but byrhub
)default to not running spell check tests on CRAN servers usethis#408
Am I doing something wrong? Are there some other checks I should be running with
devtools
, in addition todevtools::check()
anddevtools::check_win_devel()
that can help me catch errors like these?The text was updated successfully, but these errors were encountered: