From a80fdb88d7e6af2668e2b146fb1d5f57a368d6f3 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Sat, 10 Jun 2023 17:33:13 +0200 Subject: [PATCH] Add regression test for LazyArrays (#246) * Add LazyArrays to test dependencies * Load LazyArrays --- test/Project.toml | 2 ++ test/runtests.jl | 1 + 2 files changed, 3 insertions(+) diff --git a/test/Project.toml b/test/Project.toml index 1c63567..086a88d 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -5,6 +5,7 @@ Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa" Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000" ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" +LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150" Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" @@ -22,6 +23,7 @@ Combinatorics = "1.0.2" Distributions = "0.25.15" FiniteDifferences = "0.11.3, 0.12" ForwardDiff = "0.10.12" +LazyArrays = "1" PDMats = "0.10.1, 0.11" ReverseDiff = "1.4.4" StatsFuns = "0.9.6, 1" diff --git a/test/runtests.jl b/test/runtests.jl index df3ed8c..baee8ad 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,6 +3,7 @@ using DistributionsAD using Combinatorics using Distributions using PDMats +import LazyArrays using Random, LinearAlgebra, Test