Skip to content

Commit 2d24621

Browse files
committed
Mesh code refactoring
1 parent 630bc3e commit 2d24621

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

mesh_processor/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ package: build
55
mkdir -p build
66
docker run --rm -v $(shell pwd)/build:/build mesh-lambda-build
77

8-
.PHONY: build package
8+
test:
9+
python -m unittest
10+
11+
.PHONY: build package test

mesh_processor/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.1.0"
44
description = ""
55
authors = ["Your Name <[email protected]>"]
66
readme = "README.md"
7+
packages = [{include = "src"}]
78

89
[tool.poetry.dependencies]
910
python = "~3.10"

terraform/mesh_processor.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ resource "aws_lambda_function" "mesh_file_converter_lambda" {
178178
function_name = "${local.short_prefix}-mesh_processor_lambda"
179179
role = aws_iam_role.mesh_processor_lambda_exec_role.arn
180180
package_type = "Image"
181-
image_uri = module.mesh_converter_docker_image.image_uri
181+
image_uri = module.mesh_processor_docker_image.image_uri
182182
architectures = ["x86_64"]
183183
timeout = 360
184184

0 commit comments

Comments
 (0)