Skip to content

Commit

Permalink
Added support for Aqua.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Oct 18, 2024
1 parent f176b97 commit 4b5127c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Added MacroFElements. These are defined as having the basis/dof-basis of a FESpace created on top of a RefinementRule. Since PR[#1024](https://github.com/gridap/Gridap.jl/pull/1024).
- Added Barycentric refinement rule in 2D and 3D. Added Simplexify refinement rule. Since PR[#1024](https://github.com/gridap/Gridap.jl/pull/1024).
- Added support for benchmarking, through PkgBenchmark.jl. Since PR[#1039](https://github.com/gridap/Gridap.jl/pull/1039).

## [0.18.6] - 2024-08-29

Expand Down
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"

[compat]
AbstractTrees = "0.3.3, 0.4"
Aqua = "0.8"
BSON = "0.2.5, 0.3"
BlockArrays = "0.12.12, 0.13, 0.14, 0.15, 0.16"
Combinatorics = "1.0.0"
Expand All @@ -56,7 +57,8 @@ WriteVTK = "1.12.0"
julia = "1.3"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["Aqua","Test"]
8 changes: 8 additions & 0 deletions test/Aqua.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

using Gridap
using Aqua

Aqua.test_all(
Gridap,
ambiguities = false,
)
2 changes: 2 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ using Test

@time @testset "Adaptivity" begin include("AdaptivityTests/runtests.jl") end

@time @testset "Aqua" begin include("Aqua.jl") end

end # module

0 comments on commit 4b5127c

Please sign in to comment.