cloudyr / googleComputeEngineR

An R interface to the Google Cloud Compute API, for launching virtual machines
https://cloudyr.github.io/googleComputeEngineR/
Other
152 stars 41 forks source link

Travis covr check timeout #26

Open MarkEdmondson1234 opened 7 years ago

MarkEdmondson1234 commented 7 years ago

The tests are all successful, but the final step of uploading the results to codecov.io fails.

I can't see what was introduced in to stop the timeout occuring, maybe its just going over the 20min. The tests themselves avoid timeout via the below in .travis.yaml:

script: 
  - |
    R CMD build .
    travis_wait 40 R CMD check googleComputeEngineR*tar.gz
after_failure:
- find *Rcheck -name '*.fail' -print -exec cat '{}' \;
MarkEdmondson1234 commented 7 years ago

This one passes Travis but dosen't upload to Covr

https://travis-ci.org/cloudyr/googleComputeEngineR/builds/177248015

after_success:
- travis_wait 40 Rscript -e 'library("covr");codecov(line_exclusions = list("R/options.R", "R/utilities.R"))'