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.
1 parent 2be1308 commit cdf902bCopy full SHA for cdf902b
test/runtests.jl
@@ -5,13 +5,20 @@ const LONGER_TESTS = false
5
const GROUP = get(ENV, "GROUP", "All")
6
const is_APPVEYOR = Sys.iswindows() && haskey(ENV, "APPVEYOR")
7
8
+function activate_downstream_env()
9
+ Pkg.activate("GPU")
10
+ Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
11
+ Pkg.instantiate()
12
+end
13
+
14
@time begin
15
if GROUP == "All" || GROUP == "Core"
16
@time @safetestset "Basic Tests + Some AD" begin include("basictests.jl") end
17
@time @safetestset "Sparsity Tests" begin include("sparse.jl") end
18
end
19
20
if GROUP == "GPU"
21
+ activate_downstream_env()
22
@time @safetestset "GPU Tests" begin include("gpu.jl") end
23
24
0 commit comments