Closed hsloot closed 1 year ago
While devtools::check() works (which implicitly runs all tests), devtools::test() fails. The reason is that the latter includes <path-to-repo>/include (which does not exist) and not <path-to-dqrng>/include.
devtools::check()
devtools::test()
<path-to-repo>/include
<path-to-dqrng>/include
# .gitignore -/include # .Rbuildignore + ^include$ # include (symlink) +inst/include
See https://github.com/r-lib/devtools/issues/1617.
Summary
While
devtools::check()
works (which implicitly runs all tests),devtools::test()
fails. The reason is that the latter includes<path-to-repo>/include
(which does not exist) and not<path-to-dqrng>/include
.Proposed Solution
See https://github.com/r-lib/devtools/issues/1617.