Is your feature request related to a problem? Please describe.
Running devtools::check(incoming = T, quiet = T) simply returns 0 errors ✔ | 0 warnings ✔ | 0 notes ✔ although the package I am checking has numerous problems.
The reason can (only) be seen with devtools::check(incoming = T, quiet = F):
...
─ checking CRAN incoming feasibility ...Error in aspell(files, filter = list("dcf", ignore = ignore), control = control, :
No suitable spell-checker program found
Execution halted
── R CMD check results ──...
Duration: 1.3s
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
>
Describe the solution you'd like
Indicate that checks have not been completed, maybe by adding an error.
Is your feature request related to a problem? Please describe.
Running
devtools::check(incoming = T, quiet = T)simply returns0 errors ✔ | 0 warnings ✔ | 0 notes ✔although the package I am checking has numerous problems.The reason can (only) be seen with
devtools::check(incoming = T, quiet = F):Describe the solution you'd like
Indicate that checks have not been completed, maybe by adding an error.