Skip to content

Commit 3be149a

Browse files
committed
handle no_ext
1 parent 3b549d5 commit 3be149a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.evergreen/scripts/oidc_tester.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,15 @@ def setup_oidc(sub_test_name: str) -> dict[str, str] | None:
3535
if sub_test_name == "azure":
3636
env["AZUREOIDC_VMNAME_PREFIX"] = "PYTHON_DRIVER"
3737
if "-remote" not in sub_test_name:
38-
env["NO_EXT"] = "1"
3938
if sub_test_name == "azure":
4039
# Found using "az vm image list --output table"
4140
env["AZUREOIDC_IMAGE"] = "Canonical:0001-com-ubuntu-server-jammy:22_04-lts-gen2:latest"
4241
else:
4342
env["GCPKMS_IMAGEFAMILY"] = "debian-12"
4443
run_command(f"bash {target_dir}/setup.sh", env=env)
44+
else:
45+
write_env("NO_EXT", "1")
46+
4547
if sub_test_name in K8S_NAMES:
4648
run_command(f"bash {target_dir}/setup-pod.sh {sub_test_name}")
4749
run_command(f"bash {target_dir}/run-self-test.sh")

0 commit comments

Comments
 (0)