We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3503e61 commit 18f54fdCopy full SHA for 18f54fd
instrumentation/opentelemetry-instrumentation-httpx/tests/test_httpx_integration.py
@@ -725,6 +725,7 @@ def test_client_mounts_with_instrumented_transport(self):
725
spans[1].attributes[SpanAttributes.HTTP_URL], https_url
726
)
727
728
+ @mock.patch.dict("os.environ", {"NO_PROXY": ""}, clear=True)
729
class BaseInstrumentorTest(BaseTest, metaclass=abc.ABCMeta):
730
@abc.abstractmethod
731
def create_client(
@@ -994,7 +995,6 @@ def test_instrument_with_no_proxy(self):
994
995
result = self.perform_request(self.URL, client=client)
996
self.assert_span(num_spans=1)
997
self.assertEqual(result.text, "Hello!")
- print(client._mounts)
998
self.assert_proxy_mounts(
999
client._mounts.values(),
1000
3,
0 commit comments