Closed
Description
The current approach to testing is to run tests via R CMD check
and then run tests again to build the visual testing table. We could reduce build time by doing something like (inside save_outputs()
?):
if (Sys.getenv("USER") == "travis") {
# build table while running tests
} else {
# just run the tests
}