1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-10 12:21:53 +02:00

(v2.1.1.9219) unit tests

This commit is contained in:
2025-03-19 16:06:23 +01:00
parent 287e361a54
commit 755e6f43b7
4 changed files with 6 additions and 5 deletions

View File

@ -628,7 +628,8 @@ suppressMessages(set_AMR_locale("English"))
files_changed <- function(paths = "^(R|data)/") {
tryCatch({
changed_files <- system("git diff --name-only", intern = TRUE)
changed_files <- system("git status", intern = TRUE)
changed_files <- unlist(strsplit(changed_files, " "))
any(changed_files %like% paths)
}, error = function(e) TRUE)
}
@ -641,7 +642,7 @@ if (files_changed()) {
# Style pkg ---------------------------------------------------------------
if (files_changed(paths = "^(R|tests)/")) {
sethis::ui_info("Styling package")
usethis::ui_info("Styling package")
styler::style_pkg(include_roxygen_examples = FALSE,
exclude_dirs = list.dirs(full.names = FALSE, recursive = FALSE)[!list.dirs(full.names = FALSE, recursive = FALSE) %in% c("R", "tests")])
}