-
Notifications
You must be signed in to change notification settings - Fork 1.8k
test(NODE-7498): remove 3 linux-specific tests from Windows Nodeless variant #4909
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f056404
5a93bbc
cded8bb
96f6663
f97c40f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -829,7 +829,7 @@ BUILD_VARIANTS.push({ | |
| }); | ||
|
|
||
| // small subset of tests to run on nodeless environments | ||
| const nodelessTasks = [ | ||
| const commonNodelessTasks = [ | ||
| 'test-latest-server', | ||
| 'test-latest-replica_set', | ||
| 'test-latest-sharded_cluster', | ||
|
|
@@ -839,16 +839,22 @@ const nodelessTasks = [ | |
| 'test-latest-server-v1-api', | ||
| 'test-x509-authentication', | ||
| 'test-atlas-connectivity', | ||
| 'test-rapid-load-balanced', | ||
| 'test-latest-load-balanced', | ||
| 'test-auth-kerberos', | ||
| 'test-auth-ldap', | ||
| 'test-socks5-csfle', | ||
| 'test-socks5-tls', | ||
|
Comment on lines
839
to
844
|
||
| 'test-snappy-compression', | ||
| 'test-zstd-compression', | ||
| 'test-tls-support-latest' | ||
| ]; | ||
| // small subset of linux-specific tests to run on nodeless environments | ||
| const linuxOnlyTests = [ | ||
| 'test-rapid-load-balanced', | ||
| 'test-latest-load-balanced', | ||
| 'test-auth-kerberos' | ||
| ]; | ||
|
|
||
| const linuxNodelessTasks = commonNodelessTasks.concat(linuxOnlyTests); | ||
|
|
||
| const nodelessExpansions = { | ||
| NODE_LTS_VERSION: LATEST_LTS, | ||
| CLIENT_ENCRYPTION: true, | ||
|
|
@@ -858,14 +864,14 @@ BUILD_VARIANTS.push({ | |
| name: 'rhel8-nodeless', | ||
| display_name: 'Nodeless', | ||
| run_on: DEFAULT_OS, | ||
| tasks: nodelessTasks, | ||
| tasks: linuxNodelessTasks, | ||
| expansions: nodelessExpansions | ||
| }); | ||
| BUILD_VARIANTS.push({ | ||
| name: 'windows-nodeless', | ||
| display_name: 'Windows Nodeless', | ||
| run_on: WINDOWS_OS, | ||
| tasks: nodelessTasks, | ||
| tasks: commonNodelessTasks, | ||
| expansions: nodelessExpansions | ||
| }); | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.