From 95952658fe189e055b58893924d42273233ba083 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Wed, 22 Feb 2023 17:41:40 +0100 Subject: [PATCH] Debug CI. --- test/runtests.jl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index 0f6f535e5..8f315ff8b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -171,6 +171,14 @@ function print_testworker_stats(test, wrkr, resp) end end global print_testworker_started = (name, wrkr)->begin + lock(print_lock) + try + printstyled(name, color=:white) + printstyled(lpad("($wrkr)", name_align - textwidth(name) + 1, " "), " |", + " "^elapsed_align, "started at $(now())\n", color=:white) + finally + unlock(print_lock) + end end function print_testworker_errored(name, wrkr) lock(print_lock)