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
0838334
... +1 ...
5a11d5a
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
37 | 37 | if (!is_call(call)) { |
|
38 | 38 | stop("`call` must be a function call", call. = FALSE) |
|
39 | 39 | } |
|
40 | - | generic <- as.character(call[[1]]) |
|
40 | + | ||
41 | + | f <- call[[1]] |
|
42 | + | if (is_call(f)) { |
|
43 | + | n <- length(f) |
|
44 | + | f <- f[[n]] |
|
45 | + | } |
|
46 | + | generic <- as.character(f) |
|
41 | 47 | x <- eval(call[[2]], env) |
|
42 | 48 | ||
43 | 49 | class <- c(s3_class(x), "default") |
Files | Coverage |
---|---|
R | 0.41% 80.00% |
Project Totals (7 files) | 80.00% |
#29
5a11d5a
77dc8c5
0838334