From fe33f8897c71b1a254dd268aeac63773b3181baf Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 13 Oct 2025 18:28:19 -0300 Subject: [PATCH 1/2] Remove unused variable --- src/ParallelTestRunner.jl | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ParallelTestRunner.jl b/src/ParallelTestRunner.jl index 2880a21..e86e4a5 100644 --- a/src/ParallelTestRunner.jl +++ b/src/ParallelTestRunner.jl @@ -578,7 +578,6 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T ] ) - elapsed_align = textwidth("Time (s)") print_lock = stdout isa Base.LibuvStream ? stdout.lock : ReentrantLock() if stderr isa Base.LibuvStream stderr.lock = print_lock From 6a9d00c636f02c50c77be9f659025af3a37d6225 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Mon, 13 Oct 2025 18:29:17 -0300 Subject: [PATCH 2/2] Fix `clear_status` --- src/ParallelTestRunner.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ParallelTestRunner.jl b/src/ParallelTestRunner.jl index e86e4a5..fd7a0c0 100644 --- a/src/ParallelTestRunner.jl +++ b/src/ParallelTestRunner.jl @@ -591,8 +591,8 @@ function runtests(mod::Module, ARGS; test_filter = Returns(true), RecordType = T function clear_status() if status_lines_visible[] > 0 for i in 1:status_lines_visible[]-1 - print(io_ctx.stdout, "\033[1A") # Move up one line print(io_ctx.stdout, "\033[2K") # Clear entire line + print(io_ctx.stdout, "\033[1A") # Move up one line end print(io_ctx.stdout, "\r") # Move to start of line status_lines_visible[] = 0