Skip to content

Commit

Permalink
fix: Return TRUE, when testing_core_r_pkgs passes (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
csgillespie authored Jan 12, 2024
1 parent a965b15 commit b1248bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = c("aut", "cre"))
Description: Testing whether data scientists can do what they expect in
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion R/check_core_r_pkgs.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

0 comments on commit b1248bf

Please sign in to comment.