Skip to content

Commit 6f1cf55

Browse files
committed
Remove g6f from instance types to be tested
1 parent e969b88 commit 6f1cf55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration-tests/framework/tests_configuration/config_renderer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _get_instance_type_parameters(): # noqa: C901
147147
paginator = ec2_client.get_paginator("describe_instance_types")
148148
for page in paginator.paginate(InstanceTypes=xlarge_instances):
149149
for instance_type in page["InstanceTypes"]:
150-
if _is_nvidia_gpu_instance_type(instance_type):
150+
if _is_nvidia_gpu_instance_type(instance_type) and "g6f" not in instance_type["InstanceType"]:
151151
gpu_instances.append(instance_type["InstanceType"])
152152

153153
for page in paginator.paginate():

0 commit comments

Comments
 (0)