Skip to content

Commit

Permalink
debug win GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
xec-cm committed Dec 21, 2023
1 parent fa1bd44 commit 5195158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions R/longtests_rcolet.R
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,7 @@ roclet_output.roclet_longtests <- function(x, results, base_path, ...) {
# Has side-effects: writes files to disk
paths_longtests <- internal_longtests_roclet_output(
results = results$longtests,
base_path = normalizePath(
file.path(base_path, "longtests", "testthat"),
mustWork = FALSE
),
base_path = file.path(base_path, "longtests", "testthat"),
prefix = "test-biocroxytest-longtests-"
)

Expand Down
5 changes: 1 addition & 4 deletions R/utils_longtests_rcolet.R
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,7 @@ internal_longtests_roclet_output <- function(results,

paths <- names(results)
for (i in seq_along(results)) {
path <- normalizePath(
file.path(base_path, paste0(prefix, paths[i])),
mustWork = FALSE
)
path <- file.path(base_path, paste0(prefix, paths[i]))

if (!made_by_biocroxytest(path)) {
cli::cli_inform(c(
Expand Down

0 comments on commit 5195158

Please sign in to comment.