-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
covr causing failed TravisCI builds? #334
Comments
A subsequent build yielded this message during the
|
You will have to try and debug this locally first with package_coverage() |
|
From your error messages it seems to be caused by using too much memory, I am not sure there is a lot that can be done about it. You could try running Rscript -e 'cov <- covr::package_coverage()' -e 'print(cov)' -e 'covr::codecov(coverage = cov)' |
I'm still having trouble: https://travis-ci.org/billdenney/pknca/jobs/432495895 When running locally, |
So am I: https://travis-ci.org/ropensci/drake/builds/433793953. I am working on better reprexes: https://travis-ci.org/ropensci/drake/builds/434014128 (without |
Whatever the issue may be, it seems like these builds started failing right after the latest CRAN release of covr. Could something have changed in how covr uses memory resources? Could there be conflicts between processes forked by covr and those forked by the tests? |
Please try with the current devel version of covr, it may be #335 which is now fixed. |
Works for drake, thanks! |
Works for PKNCA, too. Thanks! |
In that case, shall we close? |
I think yes. |
In the past couple of days, I've had failed builds on TravisCI through what appears to be it waiting on covr() to return:
https://travis-ci.org/billdenney/pknca/jobs/431929216
The main package is here: https://github.com/billdenney/pknca
Is there a way to fire-and-forget the covr() call after a successful TravisCI build so that it becomes only the responsibility of codecov.io at that point?
The text was updated successfully, but these errors were encountered: