Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
raphasampaio committed Dec 8, 2023
1 parent 99d84cc commit 74459dd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ using Aqua
using Test

function testall()
@testset "Aqua.jl" begin
Aqua.test_all(LoggingPolyglot)
end

for file in readdir(@__DIR__)
if file in ["runtests.jl"]
continue
elseif !endswith(file, ".jl")
continue
@testset "Aqua.jl" begin
Aqua.test_all(LoggingPolyglot)
end
@testset "$(file)" begin
include(file)

for file in readdir(@__DIR__)
if file in ["runtests.jl"]
continue
elseif !endswith(file, ".jl")
continue
end
@testset "$(file)" begin
include(file)
end
end
end
end

testall()
testall()

0 comments on commit 74459dd

Please sign in to comment.