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 4ed0e36 commit d4ddd95Copy full SHA for d4ddd95
test/runtests.jl
@@ -29,13 +29,12 @@ tests = [
29
30
!CUDA.functional() && @warn("CUDA unavailable, not testing GPU support")
31
32
-@testset "GraphNeuralNetworks: graph format $graph_type" for graph_type in (:coo,:sparse)
33
- # not testing :dense since causes OutOfMerror on github's CI
34
-
+@testset "GraphNeuralNetworks: graph format $graph_type" for graph_type in (:coo, :sparse, :dense)
35
global GRAPH_T = graph_type
36
- global TEST_GPU = CUDA.functional()# && GRAPH_T != :sparse
+ global TEST_GPU = CUDA.functional()
37
38
for t in tests
+ startswith(t, "examples") && GRAPH_T == :dense && continue # not testing :dense since causes OutOfMememory on github's CI
39
include("$t.jl")
40
end
41
0 commit comments