From 64de7f467360d6407f23da254d9e6ec0fbe65525 Mon Sep 17 00:00:00 2001 From: Jonas Lundberg Date: Thu, 16 Apr 2026 16:24:52 +0200 Subject: [PATCH] Add `respx` library to Mock section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4ff0b515..bc66fe79 100644 --- a/README.md +++ b/README.md @@ -625,6 +625,7 @@ _Libraries for testing codebases and generating test data._ - [mock](https://docs.python.org/3/library/unittest.mock.html) - (Python standard library) A mocking and patching library. - [mocket](https://github.com/mindflayer/python-mocket) - A socket mock framework with gevent/asyncio/SSL support. - [responses](https://github.com/getsentry/responses) - A utility library for mocking out the requests Python library. + - [respx](https://github.com/lundberg/respx) - Mock HTTPX with awesome request patterns and response side effects. - [vcrpy](https://github.com/kevin1024/vcrpy) - Record and replay HTTP interactions on your tests. - Object Factories - [factory_boy](https://github.com/FactoryBoy/factory_boy) - A test fixtures replacement for Python.