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.
using Foo: bar, baz
import Foo
using Foo
1 parent 7241a23 commit 3300a81Copy full SHA for 3300a81
test/runtests.jl
@@ -1,6 +1,12 @@
1
-#!/usr/bin/env julia
2
-
3
-using Distributed, Test, SlurmClusterManager
+# We don't use `using Foo` here.
+# We either use `using Foo: hello, world`, or we use `import Foo`.
+# https://github.com/JuliaLang/julia/pull/42080
4
+import SlurmClusterManager
5
+import Distributed
6
+import Test
7
+
8
+# Bring some names into scope, just for convenience:
9
+using Test: @testset, @test
10
11
# test that slurm is available
12
@test !(Sys.which("sinfo") === nothing)
0 commit comments