how to do automatic tests after package build in R - Rstudio - testthat
i have tried:
testPath=paste(getwd(),"/tests/R/",sep="")
codePath=paste(getwd(),"/R/",sep="")
auto_test(test_path=testPath, code_path=codePath)
but this react each time i change a file, not each time i rebuild my package... it works for now... but if my package becomes bigger that will just take to much time... also i like to have my console available during coding... (don't like the idea of a 2nd console)