Skip to content

Commit a1f327b

Browse files
committed
skip nodeless windows tests for load-balanced topology
1 parent a490479 commit a1f327b

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.evergreen/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4070,9 +4070,6 @@ buildvariants:
40704070
- test-latest-server-v1-api
40714071
- test-x509-authentication
40724072
- test-atlas-connectivity
4073-
- test-rapid-load-balanced
4074-
- test-latest-load-balanced
4075-
- test-auth-kerberos
40764073
- test-auth-ldap
40774074
- test-socks5-csfle
40784075
- test-socks5-tls

.evergreen/generate_evergreen_tasks.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,6 @@ const nodelessTasks = [
841841
'test-atlas-connectivity',
842842
'test-rapid-load-balanced',
843843
'test-latest-load-balanced',
844-
'test-auth-kerberos',
845844
'test-auth-ldap',
846845
'test-socks5-csfle',
847846
'test-socks5-tls',
@@ -865,7 +864,10 @@ BUILD_VARIANTS.push({
865864
name: 'windows-nodeless',
866865
display_name: 'Windows Nodeless',
867866
run_on: WINDOWS_OS,
868-
tasks: nodelessTasks,
867+
// TODO(NODE-7500): Investigate why those tests are failing to setup (missing haproxy)
868+
tasks: nodelessTasks.filter(
869+
t => !['test-latest-load-balanced', 'test-rapid-load-balanced'].includes(t)
870+
),
869871
expansions: nodelessExpansions
870872
});
871873

0 commit comments

Comments
 (0)