We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rlang::check_installed()
Replace code like
if (!requireNamespace("yaml", quietly = TRUE)) { stop( "Package `yaml` must be installed to use this function.", call. = FALSE ) }
with
rlang::check_installed( pkg = "yaml", reason = "to use `retrieve_credential_testing()` for package test suite." )
reference: https://r-pkgs.org/dependencies-in-practice.html#sec-dependencies-in-suggests
The text was updated successfully, but these errors were encountered:
wibeasley
No branches or pull requests
Replace code like
with
reference:
https://r-pkgs.org/dependencies-in-practice.html#sec-dependencies-in-suggests
The text was updated successfully, but these errors were encountered: