File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
4949 arg_type = Int
5050 default = additional_workers
5151 help = " How many additional workers to launch"
52+ " -v" , " --verbose"
53+ action = :store_true
54+ help = " Run the tests with debug logs from Dagger"
5255 end
5356 end
5457
@@ -78,6 +81,10 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
7881 parsed_args[" simulate" ] && exit (0 )
7982
8083 additional_workers = parsed_args[" procs" ]
84+
85+ if parsed_args[" verbose" ]
86+ ENV [" JULIA_DEBUG" ] = " Dagger"
87+ end
8188else
8289 to_test = all_test_names
8390 @info " Running all tests"
Original file line number Diff line number Diff line change 1- @everywhere ENV [" JULIA_DEBUG" ] = " Dagger"
2-
31@everywhere function rand_finite ()
42 x = rand ()
53 if x < 0.1
You can’t perform that action at this time.
0 commit comments