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
5c0f10b
... +3 ...
c6c0151
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
92 | 92 | lhs <- rewrite(eq$lhs) |
|
93 | 93 | storage_type <- dust_type(data_info$storage_type) |
|
94 | 94 | is_integer <- if (storage_type == "int") "true" else "false" |
|
95 | - | min <- rewrite(eq$user$min %||% "NA_REAL") |
|
96 | - | max <- rewrite(eq$user$max %||% "NA_REAL") |
|
95 | + | na_value <- if (is_integer) "NA_INTEGER" else "NA_REAL" |
|
96 | + | min <- rewrite(eq$user$min %||% na_value) |
|
97 | + | max <- rewrite(eq$user$max %||% na_value) |
|
97 | 98 | previous <- lhs |
|
98 | 99 | ||
99 | 100 | if (eq$user$dim) { |
Files | Coverage |
---|---|
R | 100.00% |
Project Totals (7 files) | 100.00% |
c6c0151
8d3faae
9bbe3e3
ddc6068
5c0f10b