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.
JULIA_DEBUG
1 parent 3300a81 commit 365e497Copy full SHA for 365e497
test/runtests.jl
@@ -8,6 +8,13 @@ import Test
8
# Bring some names into scope, just for convenience:
9
using Test: @testset, @test
10
11
+const original_JULIA_DEBUG = strip(get(ENV, "JULIA_DEBUG", ""))
12
+if isempty(original_JULIA_DEBUG)
13
+ ENV["JULIA_DEBUG"] = "SlurmClusterManager"
14
+else
15
+ ENV["JULIA_DEBUG"] = original_JULIA_DEBUG * ",SlurmClusterManager"
16
+end
17
+
18
# test that slurm is available
19
@test !(Sys.which("sinfo") === nothing)
20
0 commit comments