| get_run_r_tests | R Documentation |
A convenience wrapper to
get_boolean_envvar("RUN_R_TESTS").
get_run_r_tests(stop_on_failure = FALSE)
stop_on_failure |
Throw an error instead of returning
|
The value RUN_R_TESTS is set to, converted to boolean.
FALSE if RUN_R_TESTS is not set or cannot be converted to
boolean.
Other test helpers:
develop_test(),
get_boolean_envvar(),
is_cran(),
is_r_cmd_check(),
is_running_on_fvafrcu_machines(),
is_running_on_gitlab_com(),
run_r_tests_for_known_hosts(),
set_run_r_tests()
Other operating system functions:
clipboard_path(),
file_copy(),
file_save(),
get_boolean_envvar(),
is_installed(),
is_r_package_installed(),
is_success(),
is_windows(),
view(),
vim(),
wipe_tempdir(),
with_dir()
Other logical helpers:
is_batch(),
is_cran(),
is_false(),
is_force(),
is_installed(),
is_not_false(),
is_null_or_true(),
is_of_length_zero(),
is_r_cmd_check(),
is_r_package_installed(),
is_running_on_fvafrcu_machines(),
is_running_on_gitlab_com(),
is_scalar(),
is_scalar_convertible2numeric(),
is_success(),
is_true(),
is_version_sufficient(),
is_windows()
set_run_r_tests("", force = TRUE) # make sure it is not set.
get_run_r_tests()
try(get_run_r_tests(stop_on_failure = TRUE))
set_run_r_tests("A", force = TRUE) # "A" is not boolean.
get_run_r_tests()
try(get_run_r_tests(stop_on_failure = TRUE))
set_run_r_tests(4213, force = TRUE) # All numbers apart from 0 are TRUE
get_run_r_tests()
set_run_r_tests("0", force = TRUE) # 0 (and "0") is FALSE
get_run_r_tests()
set_run_r_tests("FALSE", force = TRUE)
get_run_r_tests()
set_run_r_tests(TRUE, force = TRUE)
get_run_r_tests()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.