No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
cb7c546
... +0 ...
f1f6abc
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
985 | 985 | if (is.null(lb) && is.null(ub)) { |
|
986 | 986 | return(x) |
|
987 | 987 | } |
|
988 | - | args$log.p <- TRUE |
|
989 | 988 | if (!is.null(lb)) { |
|
990 | - | log_cdf_lb <- do_call(cdf, c(lb, args)) |
|
989 | + | log_cdf_lb <- do_call(cdf, c(lb, args, log.p = TRUE)) |
|
991 | 990 | } else { |
|
992 | 991 | log_cdf_lb <- rep(-Inf, length(x)) |
|
993 | 992 | } |
|
994 | 993 | if (!is.null(ub)) { |
|
995 | - | log_cdf_ub <- do_call(cdf, c(ub, args)) |
|
994 | + | log_cdf_ub <- do_call(cdf, c(ub, args, log.p = TRUE)) |
|
996 | 995 | } else { |
|
997 | 996 | log_cdf_ub <- rep(0, length(x)) |
|
998 | 997 | } |
Files | Coverage |
---|---|
R | -<.01% 82.28% |
Project Totals (70 files) | 82.28% |
f1f6abc
cb7c546