From b0daae969850bfa395e765d15d750fdbf0a7fb83 Mon Sep 17 00:00:00 2001 From: Pere Antoni Martorell Date: Thu, 2 May 2024 09:32:53 +0200 Subject: [PATCH] [distributed] test distributed --- NEWS.md | 1 - test/runtests.jl | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 6c32f1ac..e6abf995 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,7 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Distributed cutter (`cut()`) using `GridapDistributed` and `PartitionedArrays` since [#28](https://github.com/gridap/STLCutters.jl/pull/28). - ## [0.2.0] - 2024-02-15 ### Added diff --git a/test/runtests.jl b/test/runtests.jl index 6d25e1d0..f52ba098 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -16,7 +16,7 @@ using Test @testset "CutFacets" begin include("CutFacetsTests.jl") end @testset "DistanceFunctions" begin include("DistanceFunctionsTests.jl") end -@testset "Distributed" begin include("DistributedTests/CutterTests.jl") end +@testset "Distributed" begin include("DistributedTests/runtests.jl") end include(joinpath(@__DIR__,"..","examples","runexamples.jl"))