Skip to content

Commit

Permalink
add whitespace to retrigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lkdvos committed Dec 3, 2024
1 parent 38b3b29 commit c4816ea
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
using Test: @testset

@testset "UnspecifiedTypes.jl" begin
filenames = filter(readdir(@__DIR__)) do f
startswith("test_")(f) && endswith(".jl")(f)
end
@testset "Test $filename" for filename in filenames
include(filename)
end
filenames = filter(readdir(@__DIR__)) do f
startswith("test_")(f) && endswith(".jl")(f)
end
@testset "Test $filename" for filename in filenames
include(filename)
end
end

end

0 comments on commit c4816ea

Please sign in to comment.