Skip to content

Commit ab2121f

Browse files
GHA: Skip 'R_FUTURE_CONNECTIONS_ONMISUSE' for strict = true checks
1 parent a659bcd commit ab2121f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
R_FUTURE_PSOCK_RELAY_IMMEDIATE: ${{ matrix.config.psock_relay_immediate }}
130130
run: |
131131
if ("${{ matrix.config.strict }}" == "true") {
132-
Sys.setenv(R_FUTURE_CONNECTIONS_ONMISUSE = "error[details=TRUE]")
132+
# FIXME: Sys.setenv(R_FUTURE_CONNECTIONS_ONMISUSE = "error[details=TRUE]")
133133
Sys.setenv(R_FUTURE_GLOBALENV_ONMISUSE = "error")
134134
Sys.setenv(R_FUTURE_RNG_ONMISUSE = "error")
135135
}
@@ -145,7 +145,7 @@ jobs:
145145
if: runner.os == 'Windows'
146146
run: |
147147
if ("${{ matrix.config.strict }}" == "true") {
148-
Sys.setenv(R_FUTURE_CONNECTIONS_ONMISUSE = "error[details=TRUE]")
148+
# FIXME: Sys.setenv(R_FUTURE_CONNECTIONS_ONMISUSE = "error[details=TRUE]")
149149
Sys.setenv(R_FUTURE_DEVICES_ONMISUSE = "error")
150150
Sys.setenv(R_FUTURE_GLOBALENV_ONMISUSE = "error")
151151
Sys.setenv(R_FUTURE_RNG_ONMISUSE = "error")

0 commit comments

Comments
 (0)