@@ -3,6 +3,30 @@ using Test
33using Random: Random
44using LoggingExtras
55
6+
7+ tmpf = () -> begin
8+ push! (LOAD_PATH , expanduser (" ~/julia/devtools/" )) # access local pack
9+ push! (LOAD_PATH , joinpath (pwd (), " test/" )) # access local pack
10+ end
11+
12+ using Test, SafeTestsets
13+ const GROUP = get (ENV , " GROUP" , " All" ) # defined in in CI.yml
14+ @show GROUP
15+
16+ # @time begin
17+ # if GROUP == "All" || GROUP == "Basic"
18+ # #@safetestset "Tests" include("test/test_plant_face_fluct.jl")
19+ # @time @safetestset "plant_face_fluct" include("test_plant_face_fluct.jl")
20+ # end
21+ # if GROUP == "All" || GROUP == "JET"
22+ # #@safetestset "Tests" include("test/test_JET.jl")
23+ # @time @safetestset "test_JET" include("test_JET.jl")
24+ # #@safetestset "Tests" include("test/test_aqua.jl")
25+ # @time @safetestset "test_Aqua" include("test_aqua.jl")
26+ # end
27+ # end
28+
29+
630# using Aqua; Aqua.test_all(DistributionFits) # ambiguities from other packages
731# using JET; JET.report_package(DistributionFits) #
832# invalid possible error due to quantile may accept/return an Array (we pass a scalar)
@@ -12,11 +36,6 @@ using LoggingExtras
1236@testset " optimize error" begin
1337 @test_throws Exception DistributionFits. optimize (x -> x * x, - 1 , 1 )
1438end
15- # Optim package for interactive testing
16- i_loadlibs = () -> begin
17- push! (LOAD_PATH , expanduser (" ~/julia/scimltools/" )) # access local package repo
18- push! (LOAD_PATH , expanduser (" ~/julia/18_tools/scimltools/" )) # access local package repo
19- end
2039using Optim: Optim, optimize
2140
2241DistributionFitsOptimExt = isdefined (Base, :get_extension ) ?
0 commit comments