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
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
}
The text was updated successfully, but these errors were encountered:
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 (insidesave_outputs()
?):The text was updated successfully, but these errors were encountered: