You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using HTCondorClusterManager: addprocs_sge, SGEManager
25
14
26
15
@testset"HTCondorClusterManager.jl"begin
27
16
include("elastic.jl")
28
17
29
-
ifslurm_is_installed()
30
-
@info"Running the Slurm tests..." Sys.which("sbatch")
31
-
include("slurm.jl")
32
-
else
33
-
if"slurm"in test_args
34
-
@error"ERROR: The Slurm tests were explicitly requested in ARGS, but sbatch was not found, so the Slurm tests cannot be run" Sys.which("sbatch") test_args
35
-
@testfalse
36
-
else
37
-
@warn"sbatch was not found - Slurm tests will be skipped" Sys.which("sbatch")
38
-
@test_skipfalse
39
-
end
40
-
end
41
-
42
-
ifqsub_is_installed()
43
-
@info"Running the SGE (via qsub) tests..." Sys.which("qsub")
44
-
include("sge_qsub.jl")
45
-
else
46
-
if"sge_qsub"in test_args
47
-
@error"ERROR: The SGE tests were explicitly requested in ARGS, but qsub was not found, so the SGE tests cannot be run" Sys.which("qsub") test_args
48
-
@testfalse
49
-
else
50
-
@warn"qsub was not found - SGE tests will be skipped" Sys.which("qsub")
0 commit comments