From 37cee36dbaa6ae02233632ebfd72a779a428eb27 Mon Sep 17 00:00:00 2001 From: Abel Soares Siqueira Date: Fri, 24 May 2024 16:31:49 +0200 Subject: [PATCH] [DEBUG] git status to see what is dirty --- test/runtests.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index b0d44fce..930f5824 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -29,9 +29,12 @@ template_options = Dict( @testset "Compare folder generated by this call vs direct copier" begin mktempdir() do tmpdir1 mktempdir() do tmpdir2 + @info "Debugging information" @show tmpdir1 tmpdir2 @show pwd() @show @__DIR__ + @info "git status" + run(`git status`) template_path = joinpath(@__DIR__, "..")