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 @@ -48,6 +48,9 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
48
48
arg_type = Int
49
49
default = additional_workers
50
50
help = " How many additional workers to launch"
51
+ " -v" , " --verbose"
52
+ action = :store_true
53
+ help = " Run the tests with debug logs from Dagger"
51
54
end
52
55
end
53
56
@@ -77,6 +80,10 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
77
80
parsed_args[" simulate" ] && exit (0 )
78
81
79
82
additional_workers = parsed_args[" procs" ]
83
+
84
+ if parsed_args[" verbose" ]
85
+ ENV [" JULIA_DEBUG" ] = " Dagger"
86
+ end
80
87
else
81
88
to_test = all_test_names
82
89
@info " Running all tests"
Original file line number Diff line number Diff line change 1
- @everywhere ENV [" JULIA_DEBUG" ] = " Dagger"
2
-
3
1
@everywhere function rand_finite ()
4
2
x = rand ()
5
3
if x < 0.1
You can’t perform that action at this time.
0 commit comments