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 perplexing part of this is that this test should not be run and is not on R-hub, travis, or winbuilder. rstanarm is not a dependency for parsnip and these test contain a skip_if_not_installed("rstanarm"). The only way that I could see these running is either:
He modified the DESCRIPTION file (which he has done many times before) or wrote a special case for parsnip
His library path used for testing contains packages not included in the DESCRIPTION file. This is discordant with how R CMD check is supposed to operate.
Either way, I'll change the tolerance for the test and add skip_on_cran() for this to ensure that their results are consistent and reproducible (unless there are more shenanigans).
If anyone reading this is wondering why I would have a test case for a package that is not installed... building the stan package adds a significant time to the build environment (travis often times out when these are added to the existing formal dependencies). We run these tests locally on a regular basis.
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
BDR sent a message complaining that a test case fails for a
stan
model when long doubles are disabled:The perplexing part of this is that this test should not be run and is not on R-hub, travis, or winbuilder.
rstanarm
is not a dependency forparsnip
and these test contain askip_if_not_installed("rstanarm")
. The only way that I could see these running is either:parsnip
R CMD check
is supposed to operate.Either way, I'll change the tolerance for the test and add
skip_on_cran()
for this to ensure that their results are consistent and reproducible (unless there are more shenanigans).If anyone reading this is wondering why I would have a test case for a package that is not installed... building the
stan
package adds a significant time to the build environment (travis often times out when these are added to the existing formal dependencies). We run these tests locally on a regular basis.The text was updated successfully, but these errors were encountered: