What is a good tool for testing R packages when a new commit happens in Git? [closed]
What is a good tool for testing R packages when a new commit happens in Git? [closed] I am looking for something similar to Jenkins which can test a R package when a new commit or pull requested in Git against a standard test data set. This question appears to be off-topic. The users who voted to close gave this specific reason: 1 Answer 1 I use travis to control my package: (same as devtools::check) and codecov to check my code coverage. To sse how I set them up, you can check my package dataPreparation and look into my .travis.yml Wonderful! thanks a lot.! – pyBug Jul 2 at 15:02 If i solved your problem, consider giving a +1 and validate the answer – Emmanuel-Lin Jul 2 at 18:26 ...