From 38fc5fdc684450bde753a8c6f9993a25b3be0c13 Mon Sep 17 00:00:00 2001 From: Tor Erlend Fjelde Date: Mon, 15 Apr 2024 12:59:09 +0100 Subject: [PATCH] don't test functionality that relies on https://github.com/TuringLang/DistributionsAD.jl/pull/264 yet --- test/linking.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/linking.jl b/test/linking.jl index 7b3f1cfb8..620dbd118 100644 --- a/test/linking.jl +++ b/test/linking.jl @@ -180,7 +180,10 @@ end @model function demo_highdim_dirichlet(ns...) return x ~ filldist(Dirichlet(ones(2)), ns...) end - @testset "ns=$ns" for ns in [(3,), (3, 4), (3, 4, 5)] + @testset "ns=$ns" for ns in [ + (3,), + # (3, 4), (3, 4, 5) + ] model = demo_highdim_dirichlet(ns...) example_values = rand(NamedTuple, model) vis = DynamicPPL.TestUtils.setup_varinfos(model, example_values, (@varname(x),))