From 5956f3d33c649298521aaeb689c85ac109a88f60 Mon Sep 17 00:00:00 2001 From: wlandau Date: Tue, 6 Feb 2024 16:26:05 -0500 Subject: [PATCH] ns --- tests/hpc/test-crew_sge.R | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/hpc/test-crew_sge.R b/tests/hpc/test-crew_sge.R index 8b8fa088..40f3ec4e 100644 --- a/tests/hpc/test-crew_sge.R +++ b/tests/hpc/test-crew_sge.R @@ -2,14 +2,13 @@ tar_test("crew SGE with many tasks and many workers", { skip_on_cran() skip_if_not_installed("crew.cluster") tar_script({ - library(crew.cluster) library(targets) - controller <- crew_controller_sge( + controller <- crew.cluster::crew_controller_sge( workers = 25, tasks_max = 100, script_lines = "module load R/4.2.2" ) - tar_option_set(controller = crew_controller_group(controller)) + tar_option_set(controller = crew::crew_controller_group(controller)) list( tar_target(x, seq_len(10000)), tar_target(y, Sys.sleep(0.1), pattern = map(x))