You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
The limitation to not include files containing testsets from within testsets is a showstopper for our project, since we have our tests within a hierarchy of folders mimicking the hierarchy in the src folder.
Eg
test/runtests.jl:
@testset "utils" begin
include("utils/1.jl")
end
test/utils/1.jl:
@testset "1" begin
@test ....
end
Is there any workaround? Do you plan to offer one in the future?