@@ -45,56 +45,56 @@ include("test_util.jl")
45
45
# groups are chosen to make both groups take roughly the same amount of
46
46
# time, but beyond that there is no particular reason for the split.
47
47
if GROUP == " All" || GROUP == " Group1"
48
- include (" utils.jl" )
49
- include (" compiler.jl" )
50
- include (" varnamedvector.jl" )
51
- include (" varinfo.jl" )
52
- include (" simple_varinfo.jl" )
53
- include (" model.jl" )
54
- include (" sampler.jl" )
55
- include (" independence.jl" )
56
- include (" distribution_wrappers.jl" )
57
- include (" logdensityfunction.jl" )
58
- include (" linking.jl" )
59
- include (" serialization.jl" )
60
- include (" pointwise_logdensities.jl" )
61
- include (" lkj.jl" )
62
- include (" deprecated.jl" )
48
+ # include("utils.jl")
49
+ # include("compiler.jl")
50
+ # include("varnamedvector.jl")
51
+ # include("varinfo.jl")
52
+ # include("simple_varinfo.jl")
53
+ # include("model.jl")
54
+ # include("sampler.jl")
55
+ # include("independence.jl")
56
+ # include("distribution_wrappers.jl")
57
+ # include("logdensityfunction.jl")
58
+ # include("linking.jl")
59
+ # include("serialization.jl")
60
+ # include("pointwise_logdensities.jl")
61
+ # include("lkj.jl")
62
+ # include("deprecated.jl")
63
63
end
64
64
65
65
if GROUP == " All" || GROUP == " Group2"
66
- include (" contexts.jl" )
67
- include (" context_implementations.jl" )
68
- include (" threadsafe.jl" )
69
- include (" debug_utils.jl" )
70
- @testset " compat" begin
71
- include (joinpath (" compat" , " ad.jl" ))
72
- end
73
- @testset " extensions" begin
74
- include (" ext/DynamicPPLMCMCChainsExt.jl" )
75
- include (" ext/DynamicPPLJETExt.jl" )
76
- end
66
+ # include("contexts.jl")
67
+ # include("context_implementations.jl")
68
+ # include("threadsafe.jl")
69
+ # include("debug_utils.jl")
70
+ # @testset "compat" begin
71
+ # include(joinpath("compat", "ad.jl"))
72
+ # end
73
+ # @testset "extensions" begin
74
+ # include("ext/DynamicPPLMCMCChainsExt.jl")
75
+ # include("ext/DynamicPPLJETExt.jl")
76
+ # end
77
77
@testset " ad" begin
78
- include (" ext/DynamicPPLMooncakeExt.jl" )
78
+ # include("ext/DynamicPPLMooncakeExt.jl")
79
79
include (" ad.jl" )
80
80
end
81
- @testset " prob and logprob macro" begin
82
- @test_throws ErrorException prob " ..."
83
- @test_throws ErrorException logprob " ..."
84
- end
85
- @testset " doctests" begin
86
- DocMeta. setdocmeta! (
87
- DynamicPPL,
88
- :DocTestSetup ,
89
- :(using DynamicPPL, Distributions);
90
- recursive= true ,
91
- )
92
- doctestfilters = [
93
- # Ignore the source of a warning in the doctest output, since this is dependent on host.
94
- # This is a line that starts with "└ @ " and ends with the line number.
95
- r" └ @ .+:[0-9]+" ,
96
- ]
97
- doctest (DynamicPPL; manual= false , doctestfilters= doctestfilters)
98
- end
81
+ # @testset "prob and logprob macro" begin
82
+ # @test_throws ErrorException prob"..."
83
+ # @test_throws ErrorException logprob"..."
84
+ # end
85
+ # @testset "doctests" begin
86
+ # DocMeta.setdocmeta!(
87
+ # DynamicPPL,
88
+ # :DocTestSetup,
89
+ # :(using DynamicPPL, Distributions);
90
+ # recursive=true,
91
+ # )
92
+ # doctestfilters = [
93
+ # # Ignore the source of a warning in the doctest output, since this is dependent on host.
94
+ # # This is a line that starts with "└ @ " and ends with the line number.
95
+ # r"└ @ .+:[0-9]+",
96
+ # ]
97
+ # doctest(DynamicPPL; manual=false, doctestfilters=doctestfilters)
98
+ # end
99
99
end
100
100
end
0 commit comments