We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
runtests
printstyled
1 parent 4633607 commit a993cd8Copy full SHA for a993cd8
test/runtests.jl
@@ -438,9 +438,9 @@ cd(@__DIR__) do
438
# o_ts.verbose = true # set to true to show all timings when successful
439
Test.print_test_results(o_ts, 1)
440
if !o_ts.anynonpass
441
- println(" \033[32;1mSUCCESS\033[0m")
+ printstyled(" SUCCESS\n"; bold=true, color=:green)
442
else
443
- println(" \033[31;1mFAILURE\033[0m\n")
+ printstyled(" FAILURE\n\n"; bold=true, color=:red)
444
skipped > 0 &&
445
println("$skipped test", skipped > 1 ? "s were" : " was", " skipped due to failure.")
446
println("The global RNG seed was 0x$(string(seed, base = 16)).\n")
0 commit comments