Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,16 @@ Reexport = "1"
SafeTestsets = "0.1"
SciMLBase = "2.54, 3.1"
SciMLExpectations = "2"
SciMLTesting = "1"
Test = "1"
Turing = "0.33, 0.34, 0.35, 0.36, 0.45"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Aqua", "SafeTestsets", "Test"]
test = ["Aqua", "SafeTestsets", "SciMLTesting", "Test"]
21 changes: 11 additions & 10 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using SafeTestsets, Test
using SciMLTesting

const GROUP = get(ENV, "GROUP", "All")

@time begin
if GROUP == "All" || GROUP == "Core"
run_tests(;
core = () -> begin
@testset "Core" begin
@time @safetestset "Quality Assurance" include("qa.jl")
@time @safetestset "Basic Tests" include("basics.jl")
Expand All @@ -12,9 +11,11 @@ const GROUP = get(ENV, "GROUP", "All")
@time @safetestset "Threshold Tests" include("threshold.jl")
@time @safetestset "Example Tests" include("examples.jl")
end
end

if GROUP == "All" || GROUP == "Datafit"
@time @safetestset "Datafit Tests" include("datafit.jl")
end
end
end,
groups = Dict(
"Datafit" => () -> begin
@time @safetestset "Datafit Tests" include("datafit.jl")
end,
),
all = ["Core", "Datafit"],
)
Loading