From b981c8301b87dcb67c4378cc393ff040e5a794af Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 9 May 2026 18:46:27 +0300 Subject: [PATCH] test(physics): narrow runner to strain helpers while layer stabilizes Legacy physics API tests were retired with the module reset; keep only the strain smoke file until higher-level physics coverage returns. - Import `JuliaFEM` explicitly for includes under `Pkg.test`. --- test/physics/runtests.jl | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/test/physics/runtests.jl b/test/physics/runtests.jl index 80c5bc9..aeb7d7c 100644 --- a/test/physics/runtests.jl +++ b/test/physics/runtests.jl @@ -1,16 +1,6 @@ -# This file is a part of JuliaFEM. -# License is MIT: see https://github.com/JuliaFEM/JuliaFEM.jl/blob/master/LICENSE.md - -""" -Physics module test suite. - -Run all physics-related unit tests. -""" - using Test +using JuliaFEM -@testset "Physics Module" begin - include("test_types.jl") - include("test_boundary_conditions.jl") - include("test_validation.jl") +@testset "Physics" begin + include("test_strain.jl") end