diff --git a/DESCRIPTION b/DESCRIPTION index 13a129c..b9d269f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: audit.workbench Title: RStudio/Workbench User Acceptance Tests -Version: 0.6.1 +Version: 0.6.2 Authors@R: person("Jumping", "Rivers", , "info@jumpingrivers.com", role = c("aut", "cre")) Description: Testing whether data scientists can do what they expect in diff --git a/NEWS.md b/NEWS.md index 465a588..1d02aa3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,8 @@ +# audit.workbench 0.6.2 *2023-09-26* +- feat: Add "All tests complete" message + # audit.workbench 0.6.1 *2023-09-23* -- feat: Improved CI output +- feat: Improved CLI output # audit.workbench 0.6.0 *2023-06-30* - feat: Longer test descriptions diff --git a/R/check.R b/R/check.R index bbcff5f..d3fc1ab 100644 --- a/R/check.R +++ b/R/check.R @@ -34,5 +34,6 @@ check = function(server, lapply(r6_inits, function(r6) r6$check(debug_level = debug_level)) results = purrr::map_dfr(r6_inits, ~.x$get_log()) check_list$results = dplyr::arrange(results, .data$group, .data$short) + cli::cli_h1("All checks complete") return(invisible(check_list)) }