Skip to content

Commit 89236ad

Browse files
committed
fixup: also skip Azure on Evergreen macOS
1 parent ed81b6e commit 89236ad

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/plugin.spec.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,6 +1175,15 @@ describe('OIDC plugin (local OIDC provider)', function () {
11751175
return this.skip();
11761176
}
11771177

1178+
if (process.env.EVR_TASK_ID && process.platform === 'darwin') {
1179+
// TODO(MONGOSH-2335): Unskip Azure integration tests on macOS in Evergreen
1180+
// eslint-disable-next-line no-console
1181+
console.info(
1182+
'skipping Azure integration tests on macOS in Evergreen MONGOSH-2335'
1183+
);
1184+
return this.skip();
1185+
}
1186+
11781187
[issuer, clientId, requestScopes] = JSON.parse(
11791188
process.env.AZURE_TEST_CONFIG || ''
11801189
);

0 commit comments

Comments
 (0)