Skip to content

Commit

Permalink
Skip dotnet6 sam validate unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hnnasit authored Nov 12, 2024
1 parent 6306bfa commit cfe3e94
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/integration/unit_test/test_unit_test_dotnet6.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/hello"
code_directories = ["test/HelloWorld.Test"]
should_test_lint: bool = False

class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/hello-pt"
code_directories = ["test/HelloWorld.Test"]
should_test_lint: bool = False

# FIXME: fix and re-enable the test
# class UnitTest_dotnet6_cookiecutter_aws_sam_hello_powershell(UnitTestBase.DotNetCoreUnitTestBase):
Expand All @@ -19,33 +21,40 @@ class UnitTest_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(UnitTestBase.DotNetC
class UnitTest_dotnet6_cookiecutter_aws_sam_hello_step_functions_sample_app(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/step-func"
code_directories = ["tests/StockBuyer.Test", "tests/StockChecker.Test", "tests/StockSeller.Test"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_s3_dotnet(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/s3"
code_directories = ["test/S3EventSource.Tests"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_sam_cloudwatch_events_dotnet(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/cw-event"
code_directories = ["test/CloudWatchEventSource.Tests"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_sam_quickstart_sns_dotnet_sample_app(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/sns"
code_directories = ["test/SNSEventSource.Tests"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_from_scratch_dotnet(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/scratch"
code_directories = ["test/ScratchLambda.Tests"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_web_dotnet(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/web"
code_directories = ["tests/ServerlessAPI.Tests"]
should_test_lint: bool = False


class UnitTest_dotnet6_cookiecutter_aws_sam_quick_start_sqs(UnitTestBase.DotNetCoreUnitTestBase):
directory = "dotnet6/sqs"
code_directories = ["test/SQSEventSource.Tests"]
should_test_lint: bool = False

0 comments on commit cfe3e94

Please sign in to comment.