Skip to content

Commit d4ddd95

Browse files
do test dense
1 parent 4ed0e36 commit d4ddd95

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/runtests.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,12 @@ tests = [
2929

3030
!CUDA.functional() && @warn("CUDA unavailable, not testing GPU support")
3131

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-
32+
@testset "GraphNeuralNetworks: graph format $graph_type" for graph_type in (:coo, :sparse, :dense)
3533
global GRAPH_T = graph_type
36-
global TEST_GPU = CUDA.functional()# && GRAPH_T != :sparse
34+
global TEST_GPU = CUDA.functional()
3735

3836
for t in tests
37+
startswith(t, "examples") && GRAPH_T == :dense && continue # not testing :dense since causes OutOfMememory on github's CI
3938
include("$t.jl")
4039
end
4140
end

0 commit comments

Comments
 (0)