Print reports of all nested tests

Hi guys!

I have a lot of nested tests, something like

@testset "Test Set" begin
    @testset "Test Sub Set"
    ...
end

However, the reports of the subtests are only printed if something fails. How can I make Julia print the reports every time, even if they all succeeded?

1 Like

Looking at Julia source code, it seems that Base.Test.print_test_results does not provide any mean to do what I want. Hence, I decided to open an issue:

https://github.com/JuliaLang/julia/issues/27088