Nothing
test_that("LSF minimal", {
controller <- crew_controller_lsf(
name = "my_workflow",
workers = 1L,
seconds_idle = 300,
options_cluster = crew_options_lsf(
script_lines = paste0("module load R/", getRversion()),
verbose = TRUE
)
)
on.exit(controller$terminate())
controller$start()
controller$push(
name = "do work",
command = as.character(Sys.info()["nodename"])
)
controller$wait()
task <- controller$pop()
expect_false(task$result[[1L]] == as.character(Sys.info()["nodename"]))
})
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.