From 978ea9ba8a03223424e63bec9d9994e49c615876 Mon Sep 17 00:00:00 2001 From: Haresh Nasit <84355507+hnnasit@users.noreply.github.com> Date: Thu, 31 Oct 2024 08:25:07 -0700 Subject: [PATCH] chore: Remove lint tests for python3.8 from build_invoke --- .../build_invoke/python/test_python_3_8.py | 24 ++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/tests/integration/build_invoke/python/test_python_3_8.py b/tests/integration/build_invoke/python/test_python_3_8.py index 5ee1580d..de6dc8ea 100644 --- a/tests/integration/build_invoke/python/test_python_3_8.py +++ b/tests/integration/build_invoke/python/test_python_3_8.py @@ -10,48 +10,70 @@ class BuildInvoke_python3_8_cookiecutter_aws_sam_hello_python(BuildInvokeBase.SimpleHelloWorldBuildInvokeBase): directory = "python3.8/hello" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_eventBridge_python( BuildInvokeBase.EventBridgeHelloWorldBuildInvokeBase ): directory = "python3.8/event-bridge" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_quick_start_web_with_connectors(BuildInvokeBase.QuickStartWebBuildInvokeBase): directory = "python3.8/web-conn" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_step_functions_with_connectors(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/step-func-conn" + # python3.8 is deprecated and linter throws an error + should_test_lint = False @skip("eventbridge schema app requires credential to pull missing files, skip") class BuildInvoke_python3_8_cookiecutter_aws_sam_eventbridge_schema_app_python(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/event-bridge-schema" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_step_functions_sample_app(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/step-func" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_efs_python(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/efs" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_image_python3_8_cookiecutter_aws_sam_hello_python_lambda_image( BuildInvokeBase.SimpleHelloWorldBuildInvokeBase ): directory = "python3.8/hello-img" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_cookiecutter_aws_sam_hello_pt_python(BuildInvokeBase.SimpleHelloWorldBuildInvokeBase): directory = "python3.8/hello-pt" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_pytorch(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/apigw-pytorch" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_tensorflow(BuildInvokeBase.BuildInvokeBase): directory = "python3.8/apigw-tensorflow" + # python3.8 is deprecated and linter throws an error + should_test_lint = False class BuildInvoke_python3_8_xgboost(BuildInvokeBase.BuildInvokeBase): - directory = "python3.8/apigw-xgboost" \ No newline at end of file + directory = "python3.8/apigw-xgboost"