Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
devtools 2.4.5 source code.tar.gz | 2022-10-11 | 426.3 kB | |
devtools 2.4.5 source code.zip | 2022-10-11 | 522.8 kB | |
README.md | 2022-10-11 | 827 Bytes | |
Totals: 3 Items | 949.9 kB | 2 |
-
check(cleanup =)
was deprecated in devtools v1.11.0 (2016-04-12) and was made defunct in v2.4.4 (2022-07-20). The documentation is more clear now about recommended alternatives. -
check(check_dir = NULL)
is the new default, to align with the default behaviour of the underlyingrcmdcheck::rcmdcheck()
. -
check(cran = TRUE)
sets the env var_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_
toFALSE
, in order to surface the"Namespace in Imports field not imported from"
NOTE. This only applies to R >= 4.2, due to favorable changes in the behaviour ofR CMD check --as-cran
(#2459). -
test_active_file()
passes the package onto to testthat so it can correctly set theTESTTHAT_PKG
envvar (#2470). -
test()
andtest_active_file()
once again work with testthat itself.