Skip to content
Merged
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 @@ -48,6 +48,7 @@ QuadGK = "2.9.1"
RecipesBase = "1.3.4"
Reexport = "1"
SafeTestsets = "0.1"
SciMLTesting = "1"
SparseConnectivityTracer = "1"
StableRNGs = "1"
StaticArrays = "1.9.7"
Expand All @@ -69,6 +70,7 @@ Mooncake = "da2b9cff-9c12-43a0-ae48-6db2b0edb7d6"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
SparseConnectivityTracer = "9f842d2f-2579-4b1d-911e-f412cf18a3f5"
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Expand All @@ -78,4 +80,4 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[targets]
test = ["Aqua", "AllocCheck", "BenchmarkTools", "SafeTestsets", "ChainRulesCore", "Mooncake", "Optim", "Test", "StableRNGs", "FiniteDifferences", "QuadGK", "ForwardDiff", "StaticArrays", "Symbolics", "Unitful", "Zygote", "SparseConnectivityTracer"]
test = ["Aqua", "AllocCheck", "BenchmarkTools", "SafeTestsets", "SciMLTesting", "ChainRulesCore", "Mooncake", "Optim", "Test", "StableRNGs", "FiniteDifferences", "QuadGK", "ForwardDiff", "StaticArrays", "Symbolics", "Unitful", "Zygote", "SparseConnectivityTracer"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions test/qa/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[deps]
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DataInterpolations = "82cc6244-b520-54b8-b5a6-8a565e85f1d0"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[sources]
DataInterpolations = {path = "../.."}

[compat]
AllocCheck = "0.2"
Aqua = "0.8"
SafeTestsets = "0.0.1, 0.1"
SciMLTesting = "1"
StaticArrays = "1.9.7"
Test = "1"
File renamed without changes.
File renamed without changes.
44 changes: 2 additions & 42 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,42 +1,2 @@
using SafeTestsets, Test

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

@time begin
if GROUP == "All" || GROUP == "Core"
@testset "Core" begin
@safetestset "Interface" include("interface.jl")
@safetestset "Parameter Tests" include("parameter_tests.jl")
@safetestset "Interpolation Tests" include("interpolation_tests.jl")
@safetestset "Extrapolation Tests" include("extrapolation_tests.jl")
end
end

if GROUP == "All" || GROUP == "Methods"
@testset "Methods" begin
@safetestset "Derivative Tests" include("derivative_tests.jl")
@safetestset "Integral Tests" include("integral_tests.jl")
@safetestset "Integral Inverse Tests" include("integral_inverse_tests.jl")
@safetestset "Online Tests" include("online_tests.jl")
end
end

if GROUP == "All" || GROUP == "Extensions"
@testset "Extensions" begin
@safetestset "SparseConnectivityTracer Tests" include("sparseconnectivitytracer_tests.jl")
@safetestset "Zygote support Tests" include("zygote_tests.jl")
@safetestset "Mooncake support Tests" include("mooncake_tests.jl")
end
end

if GROUP == "All" || GROUP == "Misc"
@testset "Misc" begin
@safetestset "Show methods Tests" include("show.jl")
end
end

if GROUP == "QA"
@safetestset "Quality Assurance" include("qa.jl")
@safetestset "Allocation Tests" include("alloc_tests.jl")
end
end
using SciMLTesting
run_tests()
Loading