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.
1 parent 7d3712e commit aaef343Copy full SHA for aaef343
test/runtests.jl
@@ -51,6 +51,9 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
51
arg_type = Int
52
default = additional_workers
53
help = "How many additional workers to launch"
54
+ "-v", "--verbose"
55
+ action = :store_true
56
+ help = "Run the tests with debug logs from Dagger"
57
end
58
59
@@ -80,6 +83,10 @@ if PROGRAM_FILE != "" && realpath(PROGRAM_FILE) == @__FILE__
80
83
parsed_args["simulate"] && exit(0)
81
84
82
85
additional_workers = parsed_args["procs"]
86
+
87
+ if parsed_args["verbose"]
88
+ ENV["JULIA_DEBUG"] = "Dagger"
89
+ end
90
else
91
to_test = all_test_names
92
@info "Running all tests"
0 commit comments