1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
From: Michael R. Crusoe <crusoe@debian.org>
Subject: i686 does not exhibit a tested issue
Forwarded: https://github.com/const-ae/glmGamPoi/issues/15#issuecomment-769047299
--- a/tests/testthat/test-residuals.R
+++ b/tests/testthat/test-residuals.R
@@ -114,6 +114,9 @@ test_that("qres.gampoi can handle extrem
test_that("qres.gampoi can handle other weird values", {
+ if(R.version$arch == "i686") {
+ skip("i686 does not exhibit this weird issue.")
+ }
# This specific combination of parameters caused NA's
Y <- matrix(27)
Mu <- matrix(0.435023)
|