Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ using ModelingToolkitNeuralNets
using Test
using SafeTestsets

const GROUP = ENV["GROUP"]

@testset verbose = true "ModelingToolkitNeuralNets.jl" begin
@safetestset "QA" include("qa.jl")
if GROUP != "Core"
@safetestset "QA" include("qa.jl")
end
@safetestset "Basic" include("lotka_volterra.jl")
@safetestset "MTK model macro compatibility" include("macro.jl")
@safetestset "Symbolic Neural Network Macro" include("symbolicnn_macro.jl")
Expand Down
Loading