krlmlr / r-appveyor

Tools for using R with AppVeyor (https://appveyor.com)
132 stars 60 forks source link

Installing dependencies of dependencies #73

Closed dfalbel closed 8 years ago

dfalbel commented 8 years ago

Hi I'm using r-appveyor to check my package. My package is building fine using Travis, but with AppVeyor when installing dependencies of the package it doesn't install dependencies of dependencies.

For example my package has dplyr in Imports field, and dplyr Imports Rcpp, but Rcpp is not installed by AppVeyor.

For another package I added Rcpp to Imports, but I had a CRAN note:

checking dependencies in R code ... NOTE
Namespaces in Imports field not imported from:
  ‘Rcpp’ ‘stringi’ ‘xml2’
  All declared Imports should be used.

How should I deal with this using r-appveyor? You can see this problem in this build.

dfalbel commented 8 years ago

Sorry, just found that this is duplicated of #69