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
1508117
... +1 ...
8cc2b03
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
313 | 313 | # Expand the axes multiplicatively to fit labels |
|
314 | 314 | ggplot2::scale_x_continuous(expand = c(0.25, 0)) + |
|
315 | 315 | ggplot2::scale_y_continuous(expand = c(0.10, 0)) + |
|
316 | + | # Draw lowest circle |
|
317 | + | ggforce::geom_circle( |
|
318 | + | ggplot2::aes(x0 = 0, y0 = 0, r = 5), |
|
319 | + | color = "gray50", |
|
320 | + | fill = "white", |
|
321 | + | size = 1.5 |
|
322 | + | ) + |
|
316 | 323 | # Draw segments corresponding to displacement scale |
|
317 | 324 | ggplot2::geom_segment( |
|
318 | 325 | ggplot2::aes( |
330 | 337 | color = "gray60", |
|
331 | 338 | size = 0.5 |
|
332 | 339 | ) + |
|
333 | - | ggforce::geom_circle( |
|
334 | - | ggplot2::aes(x0 = 0, y0 = 0, r = 5), |
|
335 | - | color = "gray50", |
|
336 | - | size = 1.5 |
|
337 | - | ) + |
|
338 | 340 | # Draw labels for amplitude scale |
|
339 | 341 | ggplot2::geom_label( |
|
340 | 342 | ggplot2::aes( |
357 | 359 | label = labels |
|
358 | 360 | ), |
|
359 | 361 | color = "gray20", |
|
362 | + | fill = "transparent", |
|
360 | 363 | label.size = NA, |
|
361 | 364 | hjust = "outward", |
|
362 | 365 | vjust = "outward", |
8cc2b03
8a0f278
1508117