[Rd] Print output during long tests?

2015-05-04 Thread Toby Hocking
I am the author of R package animint which uses testthat for unit tests. This means that there is a single test file (animint/tests/testthat.R) and during R CMD check we will see the following output * checking tests ... Running ‘testthat.R’ I run these tests on Travis, which has a policy that

Re: [Rd] Print output during long tests?

2015-05-04 Thread Thierry Onkelinx
Dear Toby, Have you tried adding output to the tests with the context() function? Best regards, Thierry Op 4 mei 2015 18:28 schreef Toby Hocking tdho...@gmail.com: I am the author of R package animint which uses testthat for unit tests. This means that there is a single test file

Re: [Rd] Print output during long tests?

2015-05-04 Thread peter dalgaard
I really can't see it as a job for R to circumvent hare-brained sysadmin schemes like this You're not telling us who or what Travis is. I expect travis-ci.org has some clues, but in general, people on this list won't know. If it doesn't support setting parameters for the timeout, and it is

Re: [Rd] Print output during long tests?

2015-05-04 Thread Paul Gilbert
If your tests can be divided into multiple files in the tests/ directory then you will get lines like * checking tests ... Running ‘test1.R’ Running ‘test2.R’ Running ‘test3.R’ ... Paul On 05/04/2015 11:52 AM, Toby Hocking wrote: I am the author of R package animint which uses testthat