From 0c6f6fdc872d63344dbc911f36307cdd83f0cd99 Mon Sep 17 00:00:00 2001 From: Gaurav Arya Date: Mon, 27 Mar 2023 23:00:31 -0400 Subject: [PATCH] Revert commenting out tests --- test/runtests.jl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 08c73bfb..09db608c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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"