You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ns...@apache.org on 2018/11/17 05:29:19 UTC

[incubator-mxnet] branch master updated: fix file lock issue (#13296)

This is an automated email from the ASF dual-hosted git repository.

nswamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 98830d5  fix file lock issue (#13296)
98830d5 is described below

commit 98830d53a0decc6f3998b27e8aa6688abf3bd749
Author: Ankit Khedia <36...@users.noreply.github.com>
AuthorDate: Fri Nov 16 21:29:07 2018 -0800

    fix file lock issue (#13296)
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index b123117..ad7f0ff 100644
--- a/Makefile
+++ b/Makefile
@@ -597,7 +597,7 @@ rpkg:
 
 rpkgtest:
 	Rscript -e 'require(testthat);res<-test_dir("R-package/tests/testthat");if(!testthat:::all_passed(res)){stop("Test failures", call. = FALSE)}'
-	Rscript -e 'res<-covr:::package_coverage("R-package");fileConn<-file("r-package_coverage.json");writeLines(covr:::to_codecov(res), fileConn);close(fileConn)'
+	Rscript -e 'res<-covr:::package_coverage("R-package");fileConn<-file(paste("r-package_coverage_",toString(runif(1)),".json"));writeLines(covr:::to_codecov(res), fileConn);close(fileConn)'
 
 scalaclean:
 	(cd $(ROOTDIR)/scala-package; \