From b1248bfed3aabe0a6223080a8053f45747392425 Mon Sep 17 00:00:00 2001 From: Colin Gillespie Date: Fri, 12 Jan 2024 11:01:21 +0000 Subject: [PATCH] fix: Return TRUE, when testing_core_r_pkgs passes (#17) --- DESCRIPTION | 2 +- NEWS.md | 3 +++ R/check_core_r_pkgs.R | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2b9dbc0..cb94358 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: audit.workbench Title: RStudio/Workbench User Acceptance Tests -Version: 0.6.3 +Version: 0.6.4 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 abd5ab5..fb7052e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,6 @@ +# audit.workbench 0.6.4 *2023-01-11* +- fix: Return `TRUE`, when `testing_core_r_pkgs()` passes + # audit.workbench 0.6.3 *2023-10-01* - feat: Check for posit name leakage diff --git a/R/check_core_r_pkgs.R b/R/check_core_r_pkgs.R index 05491a3..dfb74be 100644 --- a/R/check_core_r_pkgs.R +++ b/R/check_core_r_pkgs.R @@ -30,5 +30,5 @@ testing_core_r_pkgs = function(debug_level) { if (length(missing_r_pkgs) > 0L) { cli::cli_abort("Core R packages are missing: {missing_r_pkgs}") } - return(NULL) + return(TRUE) }