Skip to content

Commit 2725385

Browse files
authored
PYTHON-4551 Remove Serverless Proxy Incremental Rollout Tests (#1742)
1 parent 960eed5 commit 2725385

File tree

2 files changed

+2
-29
lines changed

2 files changed

+2
-29
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -432,9 +432,6 @@ functions:
432432
if [ -n "${test_serverless}" ]; then
433433
export TEST_SERVERLESS=1
434434
fi
435-
if [ -n "${IS_SERVERLESS_PROXY}" ]; then
436-
export IS_SERVERLESS_PROXY=1
437-
fi
438435
if [ -n "${TEST_INDEX_MANAGEMENT}" ]; then
439436
export TEST_INDEX_MANAGEMENT=1
440437
fi
@@ -2600,18 +2597,11 @@ axes:
26002597
- id: serverless
26012598
display_name: "Serverless"
26022599
values:
2603-
- id: "original"
2600+
- id: "enabled"
26042601
display_name: "Serverless"
26052602
variables:
26062603
test_serverless: true
26072604
batchtime: 10080 # 7 days
2608-
- id: "proxy"
2609-
display_name: "Serverless Proxy"
2610-
variables:
2611-
test_serverless: true
2612-
VAULT_NAME: "serverless_next"
2613-
IS_SERVERLESS_PROXY: true
2614-
batchtime: 10080 # 7 days
26152605

26162606
buildvariants:
26172607
- matrix_name: "tests-fips"
@@ -3012,17 +3002,7 @@ buildvariants:
30123002
platform: rhel8
30133003
python-version: "*"
30143004
auth-ssl: auth-ssl
3015-
serverless: "original"
3016-
display_name: "${serverless} ${python-version} ${platform}"
3017-
tasks:
3018-
- "serverless_task_group"
3019-
3020-
- matrix_name: "serverless_proxy"
3021-
matrix_spec:
3022-
platform: rhel8
3023-
python-version: ["3.8", "3.10"]
3024-
auth-ssl: auth-ssl
3025-
serverless: "proxy"
3005+
serverless: "enabled"
30263006
display_name: "${serverless} ${python-version} ${platform}"
30273007
tasks:
30283008
- "serverless_task_group"

test/unified_format.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,6 @@ def setUp(self):
10481048

10491049
# initialize internals
10501050
self.match_evaluator = MatchEvaluatorUtil(self)
1051-
self.IS_SERVERLESS_PROXY = os.environ.get("IS_SERVERLESS_PROXY")
10521051

10531052
def maybe_skip_test(self, spec):
10541053
# add any special-casing for skipping tests here
@@ -1075,12 +1074,6 @@ def maybe_skip_test(self, spec):
10751074
if "unpin after non-transient error on abort" in spec["description"]:
10761075
if client_context.version[0] == 8:
10771076
self.skipTest("Skipping TransientTransactionError pending PYTHON-4182")
1078-
if self.IS_SERVERLESS_PROXY is not None and (
1079-
"errors during the initial connection hello are ignored" in spec["description"]
1080-
or "pinned connection is released after a transient network commit error"
1081-
in spec["description"]
1082-
):
1083-
self.skipTest("waiting on CLOUDP-202309")
10841077

10851078
class_name = self.__class__.__name__.lower()
10861079
description = spec["description"].lower()

0 commit comments

Comments
 (0)