@@ -28,14 +28,14 @@ def test_unsupported_combination():
2828 finally :
2929 runner .cleanup ()
3030
31- @pytest .mark .skip (reason = "Skipping test_apply_aws_h100 . Kernel is flaky based on where it is run." )
32- def test_apply_aws_h100 (base_image ):
33- """Test apply.sh with aws -h100 combination."""
31+ @pytest .mark .skip (reason = "Skipping test_apply_eks_h100 . Kernel is flaky based on where it is run." )
32+ def test_apply_eks_h100 (base_image ):
33+ """Test apply.sh with eks -h100 combination."""
3434 runner = DockerTestRunner (package = "nvidia-setup" , base_image = base_image )
3535 try :
3636 result = runner .run_script (
3737 script = "apply.sh" ,
38- configmaps = {"service" : "aws " , "accelerator" : "h100" },
38+ configmaps = {"service" : "eks " , "accelerator" : "h100" },
3939 skip_system_operations = True
4040 )
4141
@@ -44,14 +44,14 @@ def test_apply_aws_h100(base_image):
4444 finally :
4545 runner .cleanup ()
4646
47- @pytest .mark .skip (reason = "Skipping test_apply_aws_gb200 . Kernel is flaky based on where it is run." )
48- def test_apply_aws_gb200 (base_image ):
49- """Test apply.sh with aws -gb200 combination."""
47+ @pytest .mark .skip (reason = "Skipping test_apply_eks_gb200 . Kernel is flaky based on where it is run." )
48+ def test_apply_eks_gb200 (base_image ):
49+ """Test apply.sh with eks -gb200 combination."""
5050 runner = DockerTestRunner (package = "nvidia-setup" , base_image = base_image )
5151 try :
5252 result = runner .run_script (
5353 script = "apply.sh" ,
54- configmaps = {"service" : "aws " , "accelerator" : "gb200" },
54+ configmaps = {"service" : "eks " , "accelerator" : "gb200" },
5555 skip_system_operations = True
5656 )
5757
@@ -66,7 +66,7 @@ def test_apply_with_env_overrides(base_image):
6666 try :
6767 result = runner .run_script (
6868 script = "apply.sh" ,
69- configmaps = {"service" : "aws " , "accelerator" : "h100" },
69+ configmaps = {"service" : "eks " , "accelerator" : "h100" },
7070 env_vars = {
7171 "NVIDIA_KERNEL" : "6.8.0" ,
7272 "NVIDIA_SETUP_KERNEL_ALLOW_NEWER" : "true" , # container kernel may be newer than override
@@ -108,9 +108,9 @@ def test_apply_dynamic_supported_listing(base_image):
108108 )
109109
110110 assert_exit_code (result , 1 )
111- # Should contain at least aws -h100 and aws -gb200 in the supported list
112- assert_output_contains (result .stdout , "aws -h100" )
113- assert_output_contains (result .stdout , "aws -gb200" )
111+ # Should contain at least eks -h100 and eks -gb200 in the supported list
112+ assert_output_contains (result .stdout , "eks -h100" )
113+ assert_output_contains (result .stdout , "eks -gb200" )
114114 finally :
115115 runner .cleanup ()
116116
@@ -121,7 +121,7 @@ def test_apply_install_kernel_only_skips_actual_install(base_image):
121121 try :
122122 result = runner .run_script (
123123 script = "apply.sh" ,
124- configmaps = {"service" : "aws " , "accelerator" : "h100" },
124+ configmaps = {"service" : "eks " , "accelerator" : "h100" },
125125 env_vars = {"NVIDIA_SETUP_INSTALL_KERNEL" : "true" },
126126 skip_system_operations = True ,
127127 )
@@ -131,13 +131,13 @@ def test_apply_install_kernel_only_skips_actual_install(base_image):
131131 runner .cleanup ()
132132
133133
134- def test_apply_install_kernel_only_aws_gb200_skips_actual_install (base_image ):
135- """Kernel-only path with aws -gb200; skips actual install when SKIP_SYSTEM_OPERATIONS set."""
134+ def test_apply_install_kernel_only_eks_gb200_skips_actual_install (base_image ):
135+ """Kernel-only path with eks -gb200; skips actual install when SKIP_SYSTEM_OPERATIONS set."""
136136 runner = DockerTestRunner (package = "nvidia-setup" , base_image = base_image )
137137 try :
138138 result = runner .run_script (
139139 script = "apply.sh" ,
140- configmaps = {"service" : "aws " , "accelerator" : "gb200" },
140+ configmaps = {"service" : "eks " , "accelerator" : "gb200" },
141141 env_vars = {"NVIDIA_SETUP_INSTALL_KERNEL" : "true" },
142142 skip_system_operations = True ,
143143 )
0 commit comments