Skip to content

fix(tracing): Skip child span creation in streaming path when no current span (HTTP clients)#6811

Draft
sentrivana wants to merge 2 commits into
masterfrom
ivana/streaming-child-spans-http-clients
Draft

fix(tracing): Skip child span creation in streaming path when no current span (HTTP clients)#6811
sentrivana wants to merge 2 commits into
masterfrom
ivana/streaming-child-spans-http-clients

Conversation

@sentrivana

Copy link
Copy Markdown
Contributor

Summary

  • When span streaming is enabled and there is no current span, HTTP client integrations should not create new root segments for child-span operations
  • Adds a sentry_sdk.traces.get_current_span() is None guard before creating spans in the streaming path
  • Affected integrations: httpx, httpx2, pyreqwest, boto3, stdlib (urllib)

Test plan

  • Existing tests pass
  • Verify that in streaming mode, no orphan root segments are created for outgoing HTTP requests when there's no active span

🤖 Generated with Claude Code

…ent span (HTTP clients)

When span streaming is enabled and there is no current span,
HTTP client integrations should not create new root segments
for child-span operations. This adds a guard check using
`sentry_sdk.traces.get_current_span()` before creating spans
in the streaming path.

Affected integrations: httpx, httpx2, pyreqwest, boto3, stdlib.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Comment on lines +63 to +64
if sentry_sdk.traces.get_current_span() is None:
return real_send(self, request, **kwargs)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Early return skips trace propagation headers on outgoing requests in streaming mode

When streaming is enabled and there is no current span, returning real_send() early bypasses should_propagate_trace and header injection, so sentry-trace/baggage headers are no longer added to outgoing requests. This breaks distributed tracing continuity: an incoming/continued trace's propagation context would no longer be forwarded downstream when no span is active, whereas the non-streaming branch always propagates. The change intended only to avoid creating orphan root segments, but it also drops header propagation as a side effect. Consider still injecting propagation headers before returning early.

Evidence
  • In _install_httpx_client.send (httpx.py:62-64) the new guard if sentry_sdk.traces.get_current_span() is None: return real_send(...) returns before the with start_span block, which is the only place in the streaming path that calls should_propagate_trace and writes sentry-trace/baggage headers.
  • Scope.iter_trace_propagation_headers (scope.py:698-716) falls back to get_active_propagation_context().iter_headers() when no span is present, so propagation headers are normally emitted even with no active span.
  • The non-streaming else branch (httpx.py) always runs should_propagate_trace + header injection, so skipping it in streaming mode is an asymmetric behavioral regression.
  • The same pattern was added to the async client (httpx.py) and to httpx2/boto3/pyreqwest/stdlib, so the propagation gap applies to all patched HTTP clients.
Also found at 4 additional locations
  • sentry_sdk/integrations/httpx.py:176-178
  • sentry_sdk/integrations/httpx.py:63-64
  • sentry_sdk/integrations/httpx2.py:176-178
  • sentry_sdk/integrations/stdlib.py:308-310

Identified by Warden code-review · FFE-WY6

Comment on lines +176 to +178
if sentry_sdk.traces.get_current_span() is None:
return await real_send(self, request, **kwargs)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trace propagation headers dropped when no current span in streaming path

This early return bypasses the should_propagate_trace/iter_trace_propagation_headers block, so outgoing HTTP requests get no sentry-trace/baggage headers when span streaming is enabled and there is no current span, breaking distributed trace continuation.

Evidence
  • iter_trace_propagation_headers in scope.py (lines 703-716) yields headers from get_active_propagation_context().iter_headers() even when span is None, so propagation does not require an active span.
  • In the async send, the added if sentry_sdk.traces.get_current_span() is None: return await real_send(...) runs before the if should_propagate_trace(client, str(request.url)) header-injection block.
  • Result: no sentry-trace/baggage headers are added to the outgoing request in that branch, whereas the non-streaming else branch always injects them.
  • The same pattern appears in stdlib.py putrequest, where the guard returns before the should_propagate_trace loop that calls self.putheader(key, value).
Also found at 5 additional locations
  • sentry_sdk/integrations/httpx2.py:63-64
  • sentry_sdk/integrations/httpx.py:63-65
  • sentry_sdk/integrations/httpx2.py:176-178
  • sentry_sdk/integrations/stdlib.py:117-118
  • sentry_sdk/integrations/stdlib.py:309-310

Identified by Warden find-bugs · YUR-XRB

…an guards

httpx2: Wrap HTTP calls in parent span context so child spans are created.
strawberry: Remove async/sync branching since both paths now produce 5 spans.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown
Contributor

Codecov Results 📊

90744 passed | ❌ 336 failed | ⏭️ 6297 skipped | Total: 97377 | Pass Rate: 93.19% | Execution Time: 306m 33s

📊 Comparison with Base Branch

Metric Change
Total Tests 📉 -110
Passed Tests 📉 -441
Failed Tests 📈 +336
Skipped Tests 📉 -5

➕ New Tests (336)

View new tests
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_disabled_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-None]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_enabled_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_with_module_in_search_path_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client0]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_span_origin_span_streaming[httpx_client1]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing
  • test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]
    • File: tests.integrations.httpx.test_httpx
    • Status: ❌ Failing

❌ Failed Tests

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.10-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.11-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.12-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.6-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.7-httpx-v0.24.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:718: in _get_http_client_span
    for item in items
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.8-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.16.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.20.0
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:749: in test_outgoing_trace_headers_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_outgoing_trace_headers_append_to_baggage_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:793: in test_outgoing_trace_headers_append_to_baggage_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_disabled_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:830: in test_request_source_disabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-None]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_enabled_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:874: in test_request_source_enabled_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:910: in test_request_source_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_with_module_in_search_path_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:973: in test_request_source_with_module_in_search_path_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_no_request_source_if_duration_too_short_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1028: in test_no_request_source_if_duration_too_short_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_request_source_if_duration_over_threshold_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1065: in test_request_source_if_duration_over_threshold_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client0]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_span_origin_span_streaming[httpx_client1]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1117: in test_span_origin_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1150: in test_http_url_attributes_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client0-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-True]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

test_http_url_attributes_no_query_or_fragment_span_streaming[httpx_client1-False]

File: tests.integrations.httpx.test_httpx
Suite: py3.9-httpx-v0.28.1
Error: StopIteration

Stack Trace
tests/integrations/httpx/test_httpx.py:1193: in test_http_url_attributes_no_query_or_fragment_span_streaming
    http_span = _get_http_client_span(items)
tests/integrations/httpx/test_httpx.py:716: in _get_http_client_span
    return next(
E   StopIteration

✅ Patch coverage is 84.38%. Project has 2485 uncovered lines.
❌ Project coverage is 89.61%. Comparing base (base) to head (head).

Files with missing lines (5)
File Patch % Lines
sentry_sdk/integrations/httpx2.py 50.00% ⚠️ 2 Missing and 2 partials
sentry_sdk/integrations/stdlib.py 75.00% ⚠️ 2 Missing and 2 partials
sentry_sdk/integrations/boto3.py 50.00% ⚠️ 1 Missing and 1 partials
sentry_sdk/integrations/httpx.py 100.00% ⚠️ 2 partials
sentry_sdk/integrations/pyreqwest.py 100.00% ⚠️ 1 partials
Coverage diff
@@            Coverage Diff             @@
##          main       #PR       +/-##
==========================================
- Coverage    89.80%    89.61%    -0.19%
==========================================
  Files          193       193         —
  Lines        23898     23923       +25
  Branches      8258      8286       +28
==========================================
+ Hits         21461     21438       -23
- Misses        2437      2485       +48
- Partials      1353      1359        +6

Generated by Codecov Action

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant