Skip to content

PYTHON-4551 Remove Serverless Proxy Incremental Rollout Tests #1742

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

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 2 additions & 22 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,6 @@ functions:
if [ -n "${test_serverless}" ]; then
export TEST_SERVERLESS=1
fi
if [ -n "${IS_SERVERLESS_PROXY}" ]; then
export IS_SERVERLESS_PROXY=1
fi
if [ -n "${TEST_INDEX_MANAGEMENT}" ]; then
export TEST_INDEX_MANAGEMENT=1
fi
Expand Down Expand Up @@ -2600,18 +2597,11 @@ axes:
- id: serverless
display_name: "Serverless"
values:
- id: "original"
- id: "enabled"
display_name: "Serverless"
variables:
test_serverless: true
batchtime: 10080 # 7 days
- id: "proxy"
display_name: "Serverless Proxy"
variables:
test_serverless: true
VAULT_NAME: "serverless_next"
IS_SERVERLESS_PROXY: true
batchtime: 10080 # 7 days

buildvariants:
- matrix_name: "tests-fips"
Expand Down Expand Up @@ -3012,17 +3002,7 @@ buildvariants:
platform: rhel8
python-version: "*"
auth-ssl: auth-ssl
serverless: "original"
display_name: "${serverless} ${python-version} ${platform}"
tasks:
- "serverless_task_group"

- matrix_name: "serverless_proxy"
matrix_spec:
platform: rhel8
python-version: ["3.8", "3.10"]
auth-ssl: auth-ssl
serverless: "proxy"
serverless: "enabled"
display_name: "${serverless} ${python-version} ${platform}"
tasks:
- "serverless_task_group"
Expand Down
7 changes: 0 additions & 7 deletions test/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,6 @@ def setUp(self):

# initialize internals
self.match_evaluator = MatchEvaluatorUtil(self)
self.IS_SERVERLESS_PROXY = os.environ.get("IS_SERVERLESS_PROXY")

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

class_name = self.__class__.__name__.lower()
description = spec["description"].lower()
Expand Down
Loading