Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mndeveci authored Nov 14, 2024
2 parents 6f1691c + a22d509 commit 83d9ba2
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.18.0",
"happy-dom": "^9.20.3",
"happy-dom": "^15.10.2",
"vitest": "^0.31.1",
"vue-template-compiler": "^2.6.14"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.18.0",
"happy-dom": "^9.20.3",
"happy-dom": "^15.10.2",
"vitest": "^0.31.1",
"vue-template-compiler": "^2.6.14"
},
Expand Down
4 changes: 2 additions & 2 deletions python3.13/apigw-scikit/cookiecutter.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"project_name": "digit_classifier",
"scikit_learn_version": "1.3.0",
"scikit_learn_version": "1.5.2",
"api_path": "/classify_digit",
"architectures": {
"value": [
Expand All @@ -11,4 +11,4 @@
".gitignore"
],
"__stack_name": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/lambda/python:3.12
FROM public.ecr.aws/lambda/python:3.13

COPY app.py requirements.txt ./

Expand Down
10 changes: 10 additions & 0 deletions tests/integration/build_invoke/dotnet/test_build_invoke_dotnet6.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@
class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_dotnet(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase):
use_container = False
directory = "dotnet6/hello"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_dotnet_pt(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase):
use_container = False
directory = "dotnet6/hello-pt"
should_test_lint: bool = False


# FIXME: fix and re-enable the test
Expand All @@ -32,46 +34,53 @@ class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_s3_dotnet(
):
use_container = False
directory = "dotnet6/s3"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sns_dotnet(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
use_container = False
directory = "dotnet6/sns"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_sqs_dotnet(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
use_container = False
directory = "dotnet6/sqs"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_hello_step_functions_sample_app(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
use_container = False
directory = "dotnet6/step-func"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_cloudwatch_events_dotnet(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
use_container = False
directory = "dotnet6/cw-event"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_from_scratch_dotnet(BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase):
use_container = False
directory = "dotnet6/scratch"
should_test_lint: bool = False


class BuildInvoke_dotnet6_cookiecutter_aws_sam_quick_start_web_dotnet(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
use_container = False
directory = "dotnet6/web"
should_test_lint: bool = False


#
Expand All @@ -83,3 +92,4 @@ class BuildInvoke_image_dotnet6_cookiecutter_aws_sam_hello_dotnet_lambda_image(
BuildInvokeBase.DotNetCoreExtraRerunBuildInvokeBase
):
directory = "dotnet6/hello-img"
should_test_lint: bool = False
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 83d9ba2

Please sign in to comment.