Skip to content

Commit a4785c8

Browse files
committed
published to cran
1 parent 9899033 commit a4785c8

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

cran-comments.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
This is a resubmission with changes as requested by CRAN
22

3-
- Remove broken link in ggplot2-spec.Rmd vignette.
4-
- Reduce the examples in coord_map.Rd
3+
- Remove a subset of unit tests when running on CRAN to keep check time low
54

65
-------
76

tests/testthat/test-geom-dotplot.R

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
context("geom_dotplot")
22

3+
skip_on_cran() # This test suite is long-running (on cran) and is skipped
4+
35
set.seed(111)
46
dat <- data_frame(x = rep(LETTERS[1:2], 15), y = rnorm(30), g = rep(LETTERS[3:5], 10))
57

tests/testthat/test-guides.R

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
context("Guides")
22

3+
skip_on_cran() # This test suite is long-running (on cran) and is skipped
4+
35
test_that("colourbar trains without labels", {
46
g <- guide_colorbar()
57
sc <- scale_colour_continuous(limits = c(0, 4), labels = NULL)

tests/testthat/test-theme.r

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
context("Themes")
22

3+
skip_on_cran() # This test suite is long-running (on cran) and is skipped
4+
35
test_that("modifying theme element properties with + operator works", {
46

57
# Changing a "leaf node" works

0 commit comments

Comments
 (0)