Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 8d9a112

Browse files
Merge pull request #240 from vpuri3/patch-2
move operators tests to group `InterfaceI`
2 parents dffd462 + 3423a06 commit 8d9a112

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
group:
16-
- All
16+
- Core
17+
- InterfaceI
1718
version:
1819
- '1' # Latest Release
1920
- '~1.6' # Current LTS

test/runtests.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function activate_gpu_env()
1111
Pkg.instantiate()
1212
end
1313

14-
if GROUP == "All"
14+
if GROUP == "Core" || GROUP == "All"
1515
@time @safetestset "Exact coloring via contraction" begin include("test_contraction.jl") end
1616
@time @safetestset "Greedy distance-1 coloring" begin include("test_greedy_d1.jl") end
1717
@time @safetestset "Greedy star coloring" begin include("test_greedy_star.jl") end
@@ -25,6 +25,11 @@ if GROUP == "All"
2525
@time @safetestset "AD using colorvec vector" begin include("test_ad.jl") end
2626
end
2727

28+
if GROUP == "InterfaceI" || GROUP == "All"
29+
@time @safetestset "Jac Vecs and Hes Vecs" begin include("test_jaches_products.jl") end
30+
@time @safetestset "Vec Jac Products" begin include("test_vecjac_products.jl") end
31+
end
32+
2833
if GROUP == "GPU"
2934
activate_gpu_env()
3035
@time @safetestset "GPU AD" begin include("test_gpu_ad.jl") end

0 commit comments

Comments
 (0)