don't set test_args if empty (#127)

This commit is contained in:
Ian Butterworth
2024-10-19 06:56:48 -04:00
committed by GitHub
parent f5f652a0a9
commit 1e03e0122a

View File

@@ -57,8 +57,10 @@ function kwargs(; coverage,
if VERSION >= v"1.9"
kwargs_dict[:allow_reresolve] = parse(Bool, allow_reresolve)
end
kwargs_dict[:test_args] = test_args
if !isempty(test_args)
kwargs_dict[:test_args] = test_args
end
return kwargs_dict
end