Skip to content

Commit

Permalink
chore: Remove lint tests for python3.8 from build_invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
hnnasit authored Oct 31, 2024
1 parent 188e30c commit 978ea9b
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion tests/integration/build_invoke/python/test_python_3_8.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
directory = "python3.8/apigw-xgboost"

0 comments on commit 978ea9b

Please sign in to comment.