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
if (val_param_rds_exists) {
res <- knitr::knit_child("../inst/validation/val_report_child.Rmd", quiet = TRUE, envir = environment())
cat(res, sep = "\n")
} else {
"No quality control results found"
}
If validation results are pushed in the repo an attempt to read those files will occur and because check happens on the installed package the path will be wrong.
Proposed solutions:
Check that validation results are not pushed into the repositories
Fail the check if validation results are found in the directory with a clear message. The message provided by the check is quite obscure by default.
Include a control in qc.rmd that bypass these chunks when we are checking
The text was updated successfully, but these errors were encountered:
These chuncks are run during the checking stage.
If validation results are pushed in the repo an attempt to read those files will occur and because check happens on the installed package the path will be wrong.
Proposed solutions:
The text was updated successfully, but these errors were encountered: