Skip to content

Commit 06ac3d8

Browse files
author
leonawicz
committed
Skip unit test on remote Mac OS where required font family may not be available.
1 parent a3bc698 commit 06ac3d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/testthat/test-meme.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ test_that("meme runs as expected", {
4444
})
4545

4646
test_that("meme runs with added font family", {
47-
a <- c("windows", "mac", "linux")
48-
sysname <- tolower(Sys.info()[["sysname"]]) # Skip on Solaris. Skip on Linux if not TRAVIS.
47+
a <- c("windows", "linux")
48+
sysname <- tolower(Sys.info()[["sysname"]]) # Skip on Solaris, Mac. Skip on Linux if not TRAVIS.
4949
skip_if(!sysname %in% a || (sysname == "linux" && !identical(Sys.getenv("TRAVIS"), "true")),
5050
"Skipping test on current system.")
5151

0 commit comments

Comments
 (0)