From 787b6b6baf3c33a35d0bcc2c2ec530f11e8c294b Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Wed, 25 Dec 2024 22:39:39 -0500 Subject: [PATCH] ci: skip known coverage --- src/TemplateExpression.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TemplateExpression.jl b/src/TemplateExpression.jl index 8fc017c73..de31c2f69 100644 --- a/src/TemplateExpression.jl +++ b/src/TemplateExpression.jl @@ -466,11 +466,13 @@ function EB.extra_init_params( parameters = if num_parameters === nothing nothing else + # COV_EXCL_START if prototype === nothing ParamVector(randn(T, (num_parameters,))) else copy(get_metadata(prototype).parameters::ParamVector) end + # COV_EXCL_STOP end # We also need to include the operators here to be consistent with `create_expression`. return (; options.operators, options.expression_options..., parameters)