How to mock httpx using pytest-mock
I wrote this test to exercise some httpx code today, using pytest-mock. The key was to use which patches the module that was imported by the module.
3 posts tagged “httpx”.
I wrote this test to exercise some httpx code today, using pytest-mock. The key was to use which patches the module that was imported by the module.
My LLM tool has a feature where you can set a environment variable to see full debug level details of any HTTP requests it makes to the OpenAI APIs.
I use pytest-httpx in a bunch of my projects. Occasionally I run into test failures like this one, which can sometimes be really hard to figure out: Today I figured out a pattern for investigating…