-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from SciML/ChrisRackauckas-patch-1
Separate test groups
- Loading branch information
Showing
3 changed files
with
55 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,57 @@ | ||
using DiffEqCallbacks | ||
using Test | ||
const GROUP = get(ENV, "GROUP", "All") | ||
|
||
# write your own tests here | ||
@time begin | ||
@time @testset "Quality Assurance" begin | ||
include("qa.jl") | ||
if GROUP == "QA" | ||
@time @testset "Quality Assurance" begin | ||
include("qa.jl") | ||
end | ||
end | ||
@time @testset "AutoAbstol" begin | ||
include("autoabstol_tests.jl") | ||
end | ||
@time @testset "TerminateSteadyState tests" begin | ||
include("terminatesteadystate_test.jl") | ||
end | ||
@time @testset "StepsizeLimiter tests" begin | ||
include("stepsizelimiter_tests.jl") | ||
end | ||
@time @testset "Function Calling tests" begin | ||
include("funccall_tests.jl") | ||
end | ||
@time @testset "IndependentlyLinearized tests" begin | ||
include("independentlylinearizedtests.jl") | ||
end | ||
@time @testset "PresetTime tests" begin | ||
include("preset_time.jl") | ||
end | ||
@time @testset "Iterative tests" begin | ||
include("iterative_tests.jl") | ||
end | ||
@time @testset "Periodic tests" begin | ||
include("periodic_tests.jl") | ||
end | ||
@time @testset "Manifold tests" begin | ||
include("manifold_tests.jl") | ||
end | ||
@time @testset "Domain tests" begin | ||
include("domain_tests.jl") | ||
end | ||
@time @testset "ProbInts tests" begin | ||
include("probints.jl") | ||
end | ||
@time @testset "Integrating tests" begin | ||
include("integrating_tests.jl") | ||
end | ||
@time @testset "Integrating sum tests" begin | ||
include("integrating_sum_tests.jl") | ||
end | ||
@time @testset "Saving tests" begin | ||
include("saving_tests.jl") | ||
|
||
if GROUP == "All" || GROUP == "Core" | ||
@time @testset "AutoAbstol" begin | ||
include("autoabstol_tests.jl") | ||
end | ||
@time @testset "TerminateSteadyState tests" begin | ||
include("terminatesteadystate_test.jl") | ||
end | ||
@time @testset "StepsizeLimiter tests" begin | ||
include("stepsizelimiter_tests.jl") | ||
end | ||
@time @testset "Function Calling tests" begin | ||
include("funccall_tests.jl") | ||
end | ||
@time @testset "IndependentlyLinearized tests" begin | ||
include("independentlylinearizedtests.jl") | ||
end | ||
@time @testset "PresetTime tests" begin | ||
include("preset_time.jl") | ||
end | ||
@time @testset "Iterative tests" begin | ||
include("iterative_tests.jl") | ||
end | ||
@time @testset "Periodic tests" begin | ||
include("periodic_tests.jl") | ||
end | ||
@time @testset "Manifold tests" begin | ||
include("manifold_tests.jl") | ||
end | ||
@time @testset "Domain tests" begin | ||
include("domain_tests.jl") | ||
end | ||
@time @testset "ProbInts tests" begin | ||
include("probints.jl") | ||
end | ||
@time @testset "Integrating tests" begin | ||
include("integrating_tests.jl") | ||
end | ||
@time @testset "Integrating sum tests" begin | ||
include("integrating_sum_tests.jl") | ||
end | ||
@time @testset "Saving tests" begin | ||
include("saving_tests.jl") | ||
end | ||
end | ||
end |