From 85bed8260fa6fa97d68c5b816e8a129e2ecdc9a8 Mon Sep 17 00:00:00 2001 From: Maksim Dimitrov Date: Fri, 28 Jul 2023 14:03:20 +0300 Subject: [PATCH] fix(scrips) Print error in julia script Signed-off-by: Maksim Dimitrov --- scripts/runTests.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/runTests.jl b/scripts/runTests.jl index d700b64..adea7cf 100644 --- a/scripts/runTests.jl +++ b/scripts/runTests.jl @@ -43,6 +43,7 @@ for host::String in hosts # Add the test name to the passed tests array push!(passed_tests, full_test_name) catch e + showerror(stdout, e) # Add the test name to the failed tests array push!(failed_tests, full_test_name) end