diff test/runtests.jl @ 730:840557a58ac0 feature/selectable_tests

Change formatting for the global test set name when usign globs
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 17 Mar 2021 20:47:48 +0100
parents 1ea81e106482
children dfbdb127d2d8
line wrap: on
line diff
--- a/test/runtests.jl	Wed Mar 17 20:44:58 2021 +0100
+++ b/test/runtests.jl	Wed Mar 17 20:47:48 2021 +0100
@@ -46,11 +46,10 @@
     end
 end
 
-testsetname = isempty(ARGS) ? "Sbplib.jl" : join(ARGS, ", ")
+testsetname = isempty(ARGS) ? "Sbplib.jl" : "["*join(ARGS, ", ")*"]"
 
 @testset "$testsetname" begin
     run_testfiles(ARGS)
 end
 
-# Make it more clear that a glob was used in the test set name.
 # Make standalone files fail the same way when run together and alone