We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 630a29d commit 5ade4c5Copy full SHA for 5ade4c5
NEWS.md
@@ -8,6 +8,11 @@
8
shift + ENTER = Validate active group
9
ESC = Quit app
10
11
+- Failure diffs are now logged in `vdiffr.Rout.fail` when the `CI`
12
+ environment variable is set. This makes it easier to investigate
13
+ remote failures on Travis etc (#79).
14
+
15
16
# vdiffr 0.3.1
17
18
This release makes vdiffr compatible with ggplot2 3.2.0. It also
R/utils.R
@@ -113,7 +113,7 @@ push_log <- function(case) {
113
cat_line(file = file, "", !!!diff_lines, "")
114
}
115
is_checking <- function() {
116
- !nzchar(Sys.getenv("NOT_CRAN"))
+ nzchar(Sys.getenv("CI")) || !nzchar(Sys.getenv("NOT_CRAN"))
117
118
119
diff_lines <- function(case,
0 commit comments