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
367f686
... +0 ...
c58f62c
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
166 | 166 | ||
167 | 167 | is_select_trivial <- function(select, vars_prev) { |
|
168 | 168 | identical(select$name, vars_prev) && |
|
169 | - | purrr::every(select$expr, rlang::is_symbol) && |
|
169 | + | all(vapply(select$expr, rlang::is_symbol, logical(1))) && |
|
170 | 170 | identical(rlang::syms(select$name), select$expr) |
|
171 | 171 | } |
|
172 | 172 |
#503
c58f62c
#503
367f686