test: Run tracing tests in stream mode by sentrivana · Pull Request #7345 · getsentry/sentry-python · GitHub
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/integrations/boto3/test_trace_propagation.py
1 change: 1 addition & 0 deletions tests/integrations/django/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1514,6 +1514,7 @@ def test_render_spans_queryset_in_data(sentry_init, client, capture_events):
)
],
traces_sample_rate=1.0,
trace_lifecycle="stream",
)
events = capture_events()

Expand Down
1 change: 1 addition & 0 deletions tests/integrations/django/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def test_task_enqueue_returns_result(sentry_init, immediate_backend):
sentry_init(
integrations=[DjangoIntegration()],
traces_sample_rate=1.0,
trace_lifecycle="stream",
)

result = add_numbers.enqueue(3, 5)
Expand Down
12 changes: 10 additions & 2 deletions tests/integrations/grpc/test_grpc.py
Loading