We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8895482 commit ddba306Copy full SHA for ddba306
R/testing.R
@@ -380,6 +380,8 @@ test_transformers_drop <- function(transformers) {
380
381
382
skip_during_parallel <- function() {
383
- is_parallel <- as.logical(as.logical(toupper(Sys.getenv("STYLER_TEST_IS_TRULY_PARALLEL", TRUE))))
384
- testthat::skip_if(is_parallel)
+ Sys.getenv("STYLER_TEST_IS_TRULY_PARALLEL", TRUE) %>%
+ toupper() %>%
385
+ as.logical() %>%
386
+ testthat::skip_if()
387
}
0 commit comments