Mark van der Loo

Results 72 comments of Mark van der Loo

Thanks, I was unaware of this WRE requirement. It seems like a good default, especially for `test_package` as this is the command that is intended to be used to trigger...

There are some other things I should set, e.g. make sure that the sorting locale is `C` like in R CMD check. cf #69. In the works.

For packages we can probably get away with adding the option setting to `tests/tinytest.R`, so ```r options(warn=1) tinytest::test_package("foo") ``` I can add this to `setup_tinytest()` and ppl can do it...

Hi Bart-Jan, Yes, this is an interaction between local tests and `R CMD check` settings. You can set any environment variable of your choice in any test runner. For example,...

Yes, this is fixed in the development version. I have to ask one or two authors to update their package on CRAN before I can upload because of some false...

I think/vaguely remember that R CMD check uses the 'C' collation chart, so bytewise sorting. You could try to set the lc_collate variable to C with sys.setenv in your test...

Hi there, In general we can not guarantee that code lines after an error are even possible to run, because that may depend on the previous lines having been executed...

Hey there, thanks for reminding me. I'll try to release a new version next week.

Thanks, I will look into this. it will require some heavy reverse dependency testing.