-
Notifications
You must be signed in to change notification settings - Fork 1
build(test-lambda-container): Migrate to uv and pyproject.toml #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| [project] | ||
| name = "test-lambda-container" | ||
| version = "0" | ||
| requires-python = ">=3.11" | ||
|
|
||
| dependencies = [ | ||
| "boto3>=1.38.0", | ||
| "sentry-sdk", | ||
| ] | ||
|
|
||
| [tool.uv.sources] | ||
| sentry-sdk = { path = "../../sentry-python", editable = true } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Local sentry path breaks Docker buildHigh Severity The Reviewed by Cursor Bugbot for commit bac03ac. Configure here.
Comment on lines
+11
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The Suggested FixAdjust the Docker build process to include the Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
This file was deleted.


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pip sentry-sdk duplicates Lambda layer
Medium Severity
The removed
requirements.txtonly listedboto3; Sentry for this container test came from the copied serverless layer under/opt/python. The newdependencieslist addssentry-sdk, souv pip installpulls a second SDK into system site-packages while the image still ships the layer and uses the layer’ssentry_lambda_handlerentrypoint, changing which SDK the smoke test exercises.Reviewed by Cursor Bugbot for commit bac03ac. Configure here.