exclude tests from lambda zip

This commit is contained in:
Daniel Roth 2026-03-11 17:45:15 +00:00
parent 182fb8931e
commit 5a6294b79e

View file

@ -6,7 +6,7 @@ variable "runtime" { type = string }
variable "zip_excludes" {
type = list(string)
default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**"]
default = ["**/__pycache__/**", "**/*.pyc", "**/.pytest_cache/**", "**/tests/**"]
}
variable "timeout" {