← mined_httpx_baseline2

httpx_3387

failed NO_PATCH NO_PATCH UNSUBMITTED empty_patch(None) · None tool calls · 0 s · encode/httpx

Task input

(not found in data/tasks.jsonl)

Tool calls (0)

#ToolArgumentsResult
No trace captured.

Test output

show
........................................F
=================================== FAILURES ===================================
_____________________________ test_logging_request _____________________________

server = <tests.conftest.TestServer object at 0x10907f770>
caplog = <_pytest.logging.LogCaptureFixture object at 0x1092756a0>

    def test_logging_request(server, caplog):
        caplog.set_level(logging.INFO)
>       with httpx.Client() as client:

tests/test_utils.py:58: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
httpx/_client.py:661: in __init__
    self._transport = self._init_transport(
httpx/_client.py:709: in _init_transport
    return HTTPTransport(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <httpx.HTTPTransport object at 0x109275fd0>, ssl_context = None
http1 = True, http2 = False
limits = Limits(max_connections=100, max_keepalive_connections=20, keepalive_expiry=5.0)
proxy = None, uds = None, local_address = None, retries = 0
socket_options = None, verify = None, cert = None

    def __init__(
        self,
        ssl_context: ssl.SSLContext | None = None,
        http1: bool = True,
        http2: bool = False,
        limits: Limits = DEFAULT_LIMITS,
        proxy: ProxyTypes | None = None,
        uds: str | None = None,
        local_address: str | None = None,
        retries: int = 0,
        socket_options: typing.Iterable[SOCKET_OPTION] | None = None,
        # Deprecated...
        verify: typing.Any = None,
        cert: typing.Any = None,
    ) -> None:
>       import httpcore
E       ModuleNotFoundError: No module named 'httpcore'

httpx/_transports/default.py:151: ModuleNotFoundError
---------------------------- Captured stderr setup -----------------------------
INFO:     Started server process [41411]
INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
--------------------------- Captured stderr teardown ---------------------------
INFO:     Shutting down
INFO:     Finished server process [41411]
!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
1 failed, 40 passed in 0.28s