fawda123 / ggord

a take on ordination plots using ggplot2
https://fawda123.github.io/ggord/
62 stars 20 forks source link

Travis builds are breaking.... #3

Closed fawda123 closed 9 years ago

fawda123 commented 9 years ago

Builds work fine on local Windows machine using devtools::check().

Full Travis log here. The offending information from R CMD check on the log:

Checking URLs requires 'libcurl' support in the R build
* checking package namespace information ... OK
* checking package dependencies ... ERROR
Package required but not available: ‘ggplot2’

Package suggested but not available: ‘FactoMineR’

The suggested packages are required for a complete check.
Checking can be attempted without them by setting the environment
variable _R_CHECK_FORCE_SUGGESTS_ to a false value.
fawda123 commented 9 years ago

Added this to travis.yml and it fixed the problem.

r_packages:
  - ggplot2
  - FactoMineR