Nothing
## Use local callr futures by default
oplan <- local({
oopts <- options(future.debug = FALSE)
on.exit(options(oopts))
future::plan(future::sequential)
})
all_strategies <- function() {
strategies <- Sys.getenv("R_FUTURE_TESTS_STRATEGIES")
strategies <- unlist(strsplit(strategies, split = ","))
strategies <- gsub(" ", "", strategies)
strategies <- strategies[nzchar(strategies)]
strategies <- c(future:::supportedStrategies(), strategies)
unique(strategies)
}
test_strategy <- function(strategy) {
strategy %in% all_strategies()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.