@@ -195,7 +195,11 @@ def test_linode_transfer(test_linode_client, linode_with_volume_firewall):
195195
196196def test_linode_rebuild (test_linode_client ):
197197 client = test_linode_client
198- chosen_region = get_region (client , {"Disk Encryption" })
198+
199+ # TODO(LDE): Uncomment once LDE is available
200+ # chosen_region = get_region(client, {"Disk Encryption"})
201+ chosen_region = get_region (client )
202+
199203 label = get_test_label () + "_rebuild"
200204
201205 linode , password = client .linode .instance_create (
@@ -208,14 +212,17 @@ def test_linode_rebuild(test_linode_client):
208212 3 ,
209213 linode .rebuild ,
210214 "linode/debian10" ,
211- disk_encryption = InstanceDiskEncryptionType .disabled ,
215+ # TODO(LDE): Uncomment once LDE is available
216+ # disk_encryption=InstanceDiskEncryptionType.disabled,
212217 )
213218
214219 wait_for_condition (10 , 100 , get_status , linode , "rebuilding" )
215220
216221 assert linode .status == "rebuilding"
217222 assert linode .image .id == "linode/debian10"
218- assert linode .disk_encryption == InstanceDiskEncryptionType .disabled
223+
224+ # TODO(LDE): Uncomment once LDE is available
225+ # assert linode.disk_encryption == InstanceDiskEncryptionType.disabled
219226
220227 wait_for_condition (10 , 300 , get_status , linode , "running" )
221228
@@ -418,6 +425,8 @@ def test_linode_volumes(linode_with_volume_firewall):
418425 assert "test" in volumes [0 ].label
419426
420427
428+ # TODO(LDE): Remove skip once LDE is available
429+ @pytest .mark .skip ("LDE is not currently enabled" )
421430@pytest .mark .parametrize (
422431 "linode_with_disk_encryption" , ["disabled" ], indirect = True
423432)
0 commit comments