Skip to content

Commit d02a3a1

Browse files
committed
no longer copy unit test results to /tmp after vignette is built
1 parent 70e6cb8 commit d02a3a1

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2014-07-04 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* vignettes/Rcpp-unitTests.Rnw: Commented-out copy of results to /tmp
4+
15
2014-06-29 JJ Allaire <jj@rstudio.org>
26

37
* R/Attributes.R: fix setwd problem when sourceCpp used a

vignettes/Rcpp-unitTests.Rnw

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ if( Sys.getenv( "TRAVIS" ) == "true" ){
5050
printHTMLProtocol(tests, fileName=sprintf("unitTests-results/%s-unitTests.html", pkg))
5151
printTextProtocol(tests, fileName=sprintf("unitTests-results/%s-unitTests.txt" , pkg))
5252
53-
if (file.exists("/tmp")) {
54-
invisible(sapply(c("txt", "html"), function(ext) {
55-
fname <- sprintf("unitTests-results/%s-unitTests.%s", pkg, ext)
56-
file.copy(fname, "/tmp", overwrite=TRUE)
57-
}))
58-
}
53+
#if (file.exists("/tmp")) {
54+
# invisible(sapply(c("txt", "html"), function(ext) {
55+
# fname <- sprintf("unitTests-results/%s-unitTests.%s", pkg, ext)
56+
# file.copy(fname, "/tmp", overwrite=TRUE)
57+
# }))
58+
#}
5959
}
6060
@
6161

0 commit comments

Comments
 (0)