Re: [R-pkg-devel] My test passes in OSx on Travis, but not in OSx on CRAN

2019-09-13 Thread Vincent van Hees
Thanks Tomas for your quick response, that sounds like a very plausible explanation. I will make those corrections and will start prepare a new release. Best, Vincent On Fri, 13 Sep 2019 at 13:30, Tomas Kalibera wrote: > The error seems to be because you are trying to write to the user's home

Re: [R-pkg-devel] My test passes in OSx on Travis, but not in OSx on CRAN

2019-09-13 Thread Tomas Kalibera
The error seems to be because you are trying to write to the user's home directory. This is not allowed. Probably by accident your test creates "~/testcsv4.csv" (the same problem is present for other test files). Best Tomas On 9/13/19 1:21 PM, Vincent van Hees wrote: Dear all, I have a test

[R-pkg-devel] My test passes in OSx on Travis, but not in OSx on CRAN

2019-09-13 Thread Vincent van Hees
Dear all, I have a test in my R package that passes in OSx on Travis-CI, but it does not pass in OSx on CRAN. What does pass on both CRAN and Travis are the Linux tests. Also, on CRAN the Windows flavor passes. So, there seems to be an issue specific to the combination OSx and CRAN. The easiest