From e4f6497f528bd175a065d3e713f821743ab9e014 Mon Sep 17 00:00:00 2001 From: Gaurav Arya Date: Mon, 27 Mar 2023 21:50:10 -0400 Subject: [PATCH] Put broken AD test set last --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 6c44a287..09db608c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -17,12 +17,12 @@ if GROUP == "All" @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 "AD using colorvec vector" begin include("test_ad.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 end if GROUP == "GPU"