Skip to content

Commit d66950d

Browse files
committed
fix vars
1 parent fb36343 commit d66950d

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.evergreen/config.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2897,7 +2897,7 @@ buildvariants:
28972897
AUTH: auth
28982898
SSL: ssl
28992899
test_encryption: "true"
2900-
TEST_CRYPT_SHARED: "true"
2900+
test_crypt_shared: "true"
29012901
PYTHON_BINARY: /opt/python/3.9/bin/python3
29022902
tags: [encryption_tag]
29032903
- name: encryption-crypt_shared-rhel8-py3.13-auth-ssl
@@ -2913,7 +2913,7 @@ buildvariants:
29132913
AUTH: auth
29142914
SSL: ssl
29152915
test_encryption: "true"
2916-
TEST_CRYPT_SHARED: "true"
2916+
test_crypt_shared: "true"
29172917
PYTHON_BINARY: /opt/python/3.13/bin/python3
29182918
tags: [encryption_tag]
29192919
- name: encryption-crypt_shared-rhel8-pypy3.10-auth-ssl
@@ -2929,7 +2929,7 @@ buildvariants:
29292929
AUTH: auth
29302930
SSL: ssl
29312931
test_encryption: "true"
2932-
TEST_CRYPT_SHARED: "true"
2932+
test_crypt_shared: "true"
29332933
PYTHON_BINARY: /opt/python/pypy3.10/bin/python3
29342934
tags: [encryption_tag]
29352935
- name: encryption-pyopenssl-rhel8-py3.9-auth-ssl
@@ -2945,7 +2945,7 @@ buildvariants:
29452945
AUTH: auth
29462946
SSL: ssl
29472947
test_encryption: "true"
2948-
TEST_ENCRYPTION_PYOPENSSL: "true"
2948+
test_encryption_pyopenssl: "true"
29492949
PYTHON_BINARY: /opt/python/3.9/bin/python3
29502950
tags: [encryption_tag]
29512951
- name: encryption-pyopenssl-rhel8-py3.13-auth-ssl
@@ -2961,7 +2961,7 @@ buildvariants:
29612961
AUTH: auth
29622962
SSL: ssl
29632963
test_encryption: "true"
2964-
TEST_ENCRYPTION_PYOPENSSL: "true"
2964+
test_encryption_pyopenssl: "true"
29652965
PYTHON_BINARY: /opt/python/3.13/bin/python3
29662966
tags: [encryption_tag]
29672967
- name: encryption-pyopenssl-rhel8-pypy3.10-auth-ssl
@@ -2977,7 +2977,7 @@ buildvariants:
29772977
AUTH: auth
29782978
SSL: ssl
29792979
test_encryption: "true"
2980-
TEST_ENCRYPTION_PYOPENSSL: "true"
2980+
test_encryption_pyopenssl: "true"
29812981
PYTHON_BINARY: /opt/python/pypy3.10/bin/python3
29822982
tags: [encryption_tag]
29832983
- name: encryption-rhel8-py3.10-auth-ssl
@@ -3001,7 +3001,7 @@ buildvariants:
30013001
AUTH: auth
30023002
SSL: nossl
30033003
test_encryption: "true"
3004-
TEST_CRYPT_SHARED: "true"
3004+
test_crypt_shared: "true"
30053005
PYTHON_BINARY: /opt/python/3.11/bin/python3
30063006
- name: encryption-pyopenssl-rhel8-py3.12-auth-ssl
30073007
tasks:
@@ -3063,7 +3063,7 @@ buildvariants:
30633063
AUTH: auth
30643064
SSL: ssl
30653065
test_encryption: "true"
3066-
TEST_CRYPT_SHARED: "true"
3066+
test_crypt_shared: "true"
30673067
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.9/bin/python3
30683068
tags: [encryption_tag]
30693069
- name: encryption-crypt_shared-macos-py3.13-auth-nossl
@@ -3077,7 +3077,7 @@ buildvariants:
30773077
AUTH: auth
30783078
SSL: nossl
30793079
test_encryption: "true"
3080-
TEST_CRYPT_SHARED: "true"
3080+
test_crypt_shared: "true"
30813081
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.13/bin/python3
30823082
tags: [encryption_tag]
30833083
- name: encryption-win64-py3.9-auth-ssl
@@ -3117,7 +3117,7 @@ buildvariants:
31173117
AUTH: auth
31183118
SSL: ssl
31193119
test_encryption: "true"
3120-
TEST_CRYPT_SHARED: "true"
3120+
test_crypt_shared: "true"
31213121
PYTHON_BINARY: C:/python/Python39/python.exe
31223122
tags: [encryption_tag]
31233123
- name: encryption-crypt_shared-win64-py3.13-auth-nossl
@@ -3131,7 +3131,7 @@ buildvariants:
31313131
AUTH: auth
31323132
SSL: nossl
31333133
test_encryption: "true"
3134-
TEST_CRYPT_SHARED: "true"
3134+
test_crypt_shared: "true"
31353135
PYTHON_BINARY: C:/python/Python313/python.exe
31363136
tags: [encryption_tag]
31373137

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,9 @@ def create_encryption_variants() -> list[BuildVariant]:
251251
def get_encryption_expansions(encryption, ssl="ssl"):
252252
expansions = dict(AUTH="auth", SSL=ssl, test_encryption="true")
253253
if "crypt_shared" in encryption:
254-
expansions["TEST_CRYPT_SHARED"] = "true"
254+
expansions["test_crypt_shared"] = "true"
255255
if "PyOpenSSL" in encryption:
256-
expansions["TEST_ENCRYPTION_PYOPENSSL"] = "true"
256+
expansions["test_encryption_pyopenssl"] = "true"
257257
return expansions
258258

259259
host = "rhel8"

0 commit comments

Comments
 (0)