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