We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c1950 commit 8af9cbcCopy full SHA for 8af9cbc
1 file changed
tests/testthat/test-write_to_disk.R
@@ -6,6 +6,12 @@ test_that("inspire_grid_from_extent streams correctly to disk with mirai backend
6
skip_if_not_installed("mirai")
7
# The `nc` object from setup.R requires `sf`
8
skip_if_not_installed("sf")
9
+ # Skip on Windows with R < 4.2 due to later/promises event loop cleanup issues
10
+ # that cause the R process to crash during test completion
11
+ skip_if(
12
+ getRversion() < "4.2.0" && .Platform$OS.type == "windows",
13
+ "Mirai streaming tests skipped on Windows with R < 4.2 (event loop issues)"
14
+ )
15
16
# 2. SETUP ----
17
# Assumes `nc` and `CELLSIZE` are loaded from `tests/testthat/setup.R`
0 commit comments