Skip to content

Commit

Permalink
Activating all tests back
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreMagueresse committed Dec 20, 2023
1 parent b8ea043 commit adc18df
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,36 @@ module GridapRunTests

using Test

# @time @testset "Helpers" begin include("HelpersTests/runtests.jl") end
@time @testset "Helpers" begin include("HelpersTests/runtests.jl") end

# @time @testset "Io" begin include("IoTests/runtests.jl") end
@time @testset "Io" begin include("IoTests/runtests.jl") end

# @time @testset "Algebra" begin include("AlgebraTests/runtests.jl") end
@time @testset "Algebra" begin include("AlgebraTests/runtests.jl") end

# @time @testset "Arrays" begin include("ArraysTests/runtests.jl") end
@time @testset "Arrays" begin include("ArraysTests/runtests.jl") end

# @time @testset "TensorValues" begin include("TensorValuesTests/runtests.jl") end
@time @testset "TensorValues" begin include("TensorValuesTests/runtests.jl") end

# @time @testset "Fields" begin include("FieldsTests/runtests.jl") end
@time @testset "Fields" begin include("FieldsTests/runtests.jl") end

# @time @testset "Polynomials" begin include("PolynomialsTests/runtests.jl") end
@time @testset "Polynomials" begin include("PolynomialsTests/runtests.jl") end

# @time @testset "ReferenceFEs" begin include("ReferenceFEsTests/runtests.jl") end
@time @testset "ReferenceFEs" begin include("ReferenceFEsTests/runtests.jl") end

# @time @testset "Geometry" begin include("GeometryTests/runtests.jl") end
@time @testset "Geometry" begin include("GeometryTests/runtests.jl") end

# @time @testset "CellData" begin include("CellDataTests/runtests.jl") end
@time @testset "CellData" begin include("CellDataTests/runtests.jl") end

# @time @testset "Visualization" begin include("VisualizationTests/runtests.jl") end
@time @testset "Visualization" begin include("VisualizationTests/runtests.jl") end

# @time @testset "FESpaces (1/2)" begin include("FESpacesTests/runtests_1.jl") end
@time @testset "FESpaces (1/2)" begin include("FESpacesTests/runtests_1.jl") end

# @time @testset "FESpaces (2/2)" begin include("FESpacesTests/runtests_2.jl") end
@time @testset "FESpaces (2/2)" begin include("FESpacesTests/runtests_2.jl") end

# @time @testset "MultiField" begin include("MultiFieldTests/runtests.jl") end
@time @testset "MultiField" begin include("MultiFieldTests/runtests.jl") end

@time @testset "ODEs" begin include("ODEsTests/runtests.jl") end

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

end # module

0 comments on commit adc18df

Please sign in to comment.