ref(issues): Move stacktraces module to issues folder #98732
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
src/sentry/stacktraces/
directory tosrc/sentry/issues/stacktraces/
tests/sentry/stacktraces/
directory totests/sentry/issues/stacktraces/
sentry.stacktraces
tosentry.issues.stacktraces
pyproject.toml
references to the new pathThe stacktraces module contains functionality for processing and handling stack trace data for issues, making it a logical fit within the issues folder structure.
Files moved
Source files:
src/sentry/stacktraces/__init__.py
→src/sentry/issues/stacktraces/__init__.py
src/sentry/stacktraces/functions.py
→src/sentry/issues/stacktraces/functions.py
src/sentry/stacktraces/platform.py
→src/sentry/issues/stacktraces/platform.py
src/sentry/stacktraces/processing.py
→src/sentry/issues/stacktraces/processing.py
Test files:
tests/sentry/stacktraces/__init__.py
→tests/sentry/issues/stacktraces/__init__.py
tests/sentry/stacktraces/test_filename.py
→tests/sentry/issues/stacktraces/test_filename.py
tests/sentry/stacktraces/test_functions.py
→tests/sentry/issues/stacktraces/test_functions.py
tests/sentry/stacktraces/test_in_app_normalization.py
→tests/sentry/issues/stacktraces/test_in_app_normalization.py
tests/sentry/stacktraces/test_platform.py
→tests/sentry/issues/stacktraces/test_platform.py
Test plan
part of https://linear.app/getsentry/issue/RTC-1110/move-issues-endpoints-into-issues-app