@@ -154,7 +154,7 @@ def run_terraform(*, image: str):
154154 # Ensure insecure configurations fail due to checkov
155155 # Tests is a list of tuples containing the test environment, command, and
156156 # expected exit code
157- tests : list [tuple [dict , str , int ]] = [
157+ tests : list [tuple [dict , str , int ]] = [ # type: ignore
158158 ({}, "terraform --skip-tfsec --skip-terrascan plan" , 1 ),
159159 ({}, "tfenv exec --skip-tfsec --skip-terrascan plan" , 1 ),
160160 (
@@ -192,7 +192,7 @@ def run_terraform(*, image: str):
192192 # Ensure insecure configurations fail due to terrascan
193193 # Tests is a list of tuples containing the test environment, command, and
194194 # expected exit code
195- tests : list [tuple [dict , str , int ]] = [
195+ tests : list [tuple [dict , str , int ]] = [ # type: ignore
196196 ({}, "terraform --skip-tfsec --skip-checkov plan" , 3 ),
197197 ({}, "tfenv exec --skip-tfsec --skip-checkov plan" , 3 ),
198198 (
@@ -231,7 +231,7 @@ def run_terraform(*, image: str):
231231 # disabled
232232 # Tests is a list of tuples containing the test environment, command, and
233233 # expected exit code
234- tests : list [tuple [dict , str , int ]] = [
234+ tests : list [tuple [dict , str , int ]] = [ # type: ignore
235235 ({"DISABLE_SECURITY" : "true" }, "terraform init" , 0 ),
236236 ({"DISABLE_SECURITY" : "true" }, "tfenv exec init" , 0 ),
237237 (
@@ -296,7 +296,7 @@ def run_terraform(*, image: str):
296296 # Ensure secure configurations pass
297297 # Tests is a list of tuples containing the test environment, command, and
298298 # expected exit code
299- tests : list [tuple [dict , str , int ]] = [
299+ tests : list [tuple [dict , str , int ]] = [ # type: ignore
300300 ({}, "terraform init" , 0 ),
301301 ({}, "tfenv exec init" , 0 ),
302302 (
0 commit comments