From 0bd4580c00266beaeb57ca051f8c986d1b5b9baf Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:43:04 +0300 Subject: [PATCH] test(basis): load JuliaFEM in partition-of-unity sweep Basis regression files used to `include` topology and generated basis sources directly from `../../src`, which drifted from package exports and hid missing wiring until CI. - Replace the relative `include` chain with `using JuliaFEM` so tests hit the real module surface (`Lagrange{P}`, parametrized topologies, generated tables). --- test/basis/test_all_elements.jl | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/test/basis/test_all_elements.jl b/test/basis/test_all_elements.jl index ebf9940..e49aa93 100644 --- a/test/basis/test_all_elements.jl +++ b/test/basis/test_all_elements.jl @@ -2,16 +2,7 @@ using Test using StaticArrays, Tensors -include("../../src/topology/api.jl") -include("../../src/topology/segments.jl") -include("../../src/topology/triangles.jl") -include("../../src/topology/quadrilaterals.jl") -include("../../src/topology/tetrahedra.jl") -include("../../src/topology/hexahedra.jl") -include("../../src/topology/pyramids.jl") -include("../../src/topology/wedges.jl") -include("../../src/basis/api.jl") -include("../../src/basis/basis_generated.jl") +using JuliaFEM @testset "All Element Types - Partition of Unity" begin # 1D elements