mirror of
https://github.com/julia-actions/julia-runtest.git
synced 2026-02-12 11:06:54 +08:00
don't set test_args if empty (#127)
This commit is contained in:
@@ -57,8 +57,10 @@ function kwargs(; coverage,
|
|||||||
if VERSION >= v"1.9"
|
if VERSION >= v"1.9"
|
||||||
kwargs_dict[:allow_reresolve] = parse(Bool, allow_reresolve)
|
kwargs_dict[:allow_reresolve] = parse(Bool, allow_reresolve)
|
||||||
end
|
end
|
||||||
|
|
||||||
kwargs_dict[:test_args] = test_args
|
if !isempty(test_args)
|
||||||
|
kwargs_dict[:test_args] = test_args
|
||||||
|
end
|
||||||
|
|
||||||
return kwargs_dict
|
return kwargs_dict
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user