Skip to content

Commit

Permalink
Revert commenting out tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav-arya committed Mar 28, 2023
1 parent c71b336 commit 0c6f6fd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ function activate_gpu_env()
end

if GROUP == "All"
# @time @safetestset "Exact coloring via contraction" begin include("test_contraction.jl") end
# @time @safetestset "Greedy distance-1 coloring" begin include("test_greedy_d1.jl") end
# @time @safetestset "Greedy star coloring" begin include("test_greedy_star.jl") end
# @time @safetestset "Acyclic coloring" begin include("test_acyclic.jl") end
# @time @safetestset "Matrix to graph conversion" begin include("test_matrix2graph.jl") end
# @time @safetestset "Hessian colorvecs" begin include("test_sparse_hessian.jl") end
# @time @safetestset "Integration test" begin include("test_integration.jl") end
# @time @safetestset "Special matrices" begin include("test_specialmatrices.jl") end
@time @safetestset "Exact coloring via contraction" begin include("test_contraction.jl") end
@time @safetestset "Greedy distance-1 coloring" begin include("test_greedy_d1.jl") end
@time @safetestset "Greedy star coloring" begin include("test_greedy_star.jl") end
@time @safetestset "Acyclic coloring" begin include("test_acyclic.jl") end
@time @safetestset "Matrix to graph conversion" begin include("test_matrix2graph.jl") end
@time @safetestset "Hessian colorvecs" begin include("test_sparse_hessian.jl") end
@time @safetestset "Integration test" begin include("test_integration.jl") end
@time @safetestset "Special matrices" begin include("test_specialmatrices.jl") end
@time @safetestset "Jac Vecs and Hes Vecs" begin include("test_jaches_products.jl") end
@time @safetestset "Vec Jac Products" begin include("test_vecjac_products.jl") end
# @time @safetestset "AD using colorvec vector" begin include("test_ad.jl") end
@time @safetestset "AD using colorvec vector" begin include("test_ad.jl") end
end

if GROUP == "GPU"
Expand Down

0 comments on commit 0c6f6fd

Please sign in to comment.