diff --git a/.gitignore b/.gitignore index 0a7d93d..89a7763 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,31 @@ package-lock.json .pytest_cache .ruff_cache .vscode +.mypy_cache/ # Ignore Python bytecode files -__pycache__/ \ No newline at end of file +__pycache__/ +*.py[cod] +*.egg-info/ +*.eggs/ +dist/ +build/ +.eggs/ +# Ignore Terraform directories and files +.terraform/ +.terraform.lock.hcl +*.tfstate +*.tfstate.* +.tfvars +.tfvars.json +override.tf +override.tf.json +*_override.tf +*_override.tf.json +# Ignore IDE and OS files +.env +.env.local +*.swp +*.swo +*~ +.idea/ +*.iml \ No newline at end of file diff --git a/python/test/__pycache__/test_base_lambda.cpython-311-pytest-8.1.1.pyc b/python/test/__pycache__/test_base_lambda.cpython-311-pytest-8.1.1.pyc deleted file mode 100644 index daa0a2c..0000000 Binary files a/python/test/__pycache__/test_base_lambda.cpython-311-pytest-8.1.1.pyc and /dev/null differ