是否有可能安装我使用编写的 R 包的单元测试remotes::install_local
?
我知道我可以做类似的事情:
install.packages('mypkg', INSTALL_opts="--install-tests", type='source')
testthat::test_package('mypkg')
这是否也可以使用:
remotes::install_local("mypkg.tar.gz", build_opts='--install-tests')
testthat::test_package('data.table')