diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3e7b1823..89466eae0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - Core - Downstream - GroebnerExt + - LuxExt - SymPy version: - '1' diff --git a/test/runtests.jl b/test/runtests.jl index e9c7a6b64..5ce1b5ff2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -70,6 +70,10 @@ if GROUP == "All" || GROUP == "GroebnerExt" @safetestset "Groebner extension Test" begin include("extensions/groebner.jl") end end +if GROUP == "All" || GROUP == "LuxExt" + @safetestset "Lux extension Test" begin include("extensions/lux.jl") end +end + if GROUP == "All" || GROUP == "Core" || GROUP == "SymbolicIndexingInterface" @safetestset "SymbolicIndexingInterface Trait Test" begin include("symbolic_indexing_interface_trait.jl")