You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# test package functionality without example files (= as if on CRAN)
check:
R -q -e "message('\nINFO: running check as if on CRAN\n'); devtools::check(env_vars = c())"
# tests without file tests (= as if on CRAN)
auto_test:
R -q -e "rm(list = ls()); options("isoreader.skip_file_tests" = TRUE); message('\nINFO: running tests as if on CRAN\n'); testthat::auto_test_package()"
# tests with file test
auto_test_all:
R -q -e "rm(list = ls()); message('\nINFO: running all tests (as if NOT on CRAN)\n'); testthat::auto_test_package()"