From 2b405d15ff693f9df76183b83c97a2900e57f59c Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 23 Jun 2024 22:05:09 +0300 Subject: [PATCH] Skip problematic Win tests --- tests/testthat.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/testthat.R b/tests/testthat.R index 41e67ce7..c355c6bd 100644 --- a/tests/testthat.R +++ b/tests/testthat.R @@ -17,7 +17,6 @@ library(testthat) suppressPackageStartupMessages(library(rstanarm)) -# Failures on Windows CI with R4.0 that I can't replicate locally -if (!isTRUE(.Platform$OS.type == "windows" && R.version$minor < "2.0")) { +if (!isTRUE(.Platform$OS.type == "windows" && R.version$minor <= "3.0")) { test_check("rstanarm") }