diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 5908cde1380..c05f3fa7f34 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -1419,19 +1419,6 @@ tasks: - func: start-load-balancer - func: run-lb-tests - func: stop-load-balancer - - name: test-auth-kerberos - tags: - - auth - - kerberos - commands: - - command: expansions.update - type: setup - params: - updates: - - {key: NATIVE, value: 'true'} - - func: install dependencies - - func: assume secrets manager role - - func: run kerberos tests - name: test-auth-ldap tags: - auth @@ -2982,7 +2969,6 @@ buildvariants: - test-8.0-load-balanced - test-rapid-load-balanced - test-latest-load-balanced - - test-auth-kerberos - test-auth-ldap - test-socks5 - test-socks5-csfle @@ -3039,7 +3025,6 @@ buildvariants: - test-8.0-load-balanced - test-rapid-load-balanced - test-latest-load-balanced - - test-auth-kerberos - test-auth-ldap - test-socks5 - test-socks5-csfle @@ -3096,7 +3081,6 @@ buildvariants: - test-8.0-load-balanced - test-rapid-load-balanced - test-latest-load-balanced - - test-auth-kerberos - test-auth-ldap - test-socks5 - test-socks5-csfle @@ -3153,7 +3137,6 @@ buildvariants: - test-8.0-load-balanced - test-rapid-load-balanced - test-latest-load-balanced - - test-auth-kerberos - test-auth-ldap - test-socks5 - test-socks5-csfle @@ -3208,7 +3191,6 @@ buildvariants: - test-8.0-load-balanced - test-rapid-load-balanced - test-latest-load-balanced - - test-auth-kerberos - test-auth-ldap - test-socks5-csfle - test-socks5-tls diff --git a/.evergreen/generate_evergreen_tasks.js b/.evergreen/generate_evergreen_tasks.js index 6341ff12677..9896ea86079 100644 --- a/.evergreen/generate_evergreen_tasks.js +++ b/.evergreen/generate_evergreen_tasks.js @@ -151,18 +151,19 @@ TASKS.push( { func: 'stop-load-balancer' } ] })), - { - name: 'test-auth-kerberos', - tags: ['auth', 'kerberos'], - commands: [ - updateExpansions({ - NATIVE: 'true' - }), - { func: 'install dependencies' }, - { func: 'assume secrets manager role' }, - { func: 'run kerberos tests' } - ] - }, + // TODO(NODE-7178): Unskip kerberos tests. + // { + // name: 'test-auth-kerberos', + // tags: ['auth', 'kerberos'], + // commands: [ + // updateExpansions({ + // NATIVE: 'true' + // }), + // { func: 'install dependencies' }, + // { func: 'assume secrets manager role' }, + // { func: 'run kerberos tests' } + // ] + // }, { name: 'test-auth-ldap', tags: ['auth', 'ldap'],