rOpenGov/psData

Travis CI fail

christophergandrud opened this issue · 2 comments

Travis CI fails on loading xlsx dependency.

TravisCI config file .travis.yml for ropengov.github.io has some ruby-specific stuff in it that is not required for testing pure R-packages. You could try to adapt from e.g. finpar config file. You will most probably have to place

- sudo R CMD javareconf

to L11 just after

- ./travis-tool.sh bootstrap

This way the basic R environment will be installed first and Java environment variables reconfigured after that before installing the actual dependencies (such as xlsx).

Perfect. Now it passes. Thanks