pytest-httpserver icon indicating copy to clipboard operation
pytest-httpserver copied to clipboard

Http server for pytest to test http clients

Results 20 pytest-httpserver issues
Sort by recently updated
recently updated
newest added

Heya! Thanks for the library! Would it be possible to add fault simulation to this library? I've used WireMock in the past in Java projects and it's ability to simulate...

This will allow users to define one callable object (a hook) for each request handler, which will be called right before returning the response. The hook has the possibility to...

Is it possible next time on release new version make the github release to have entry on https://github.com/csernazs/pytest-httpserver/releases entries? 🤔 I'm asking because only on make gh release is spread...

Hi Zsolt! As someone just getting started with this library, I ran into this issue: ```py import unittest import requests from pytest_httpserver import HTTPServer class TestMyStuff(unittest.TestCase): def test_1(self): server =...

I am wondering about what you would think about bringing plugin under https://github.com/pytest-dev - I do have two plugins there and I kinda feel unsafe to use plugins from outside...

It seems like the type (string vs dict) of `query_string` affects the behaviour of the resulting matcher when the query string in the request has percent-encoding. Specifically, a string typed...

Is adding support for x-www-form-urlencoded something that would be accepted/supported?

Hi, first of all, let me say this is a great library, and I've loved using it so far. I have a use-case where I need to test a streaming...

`no_handler_status_code` is nice to set a 404 status instead of 500 when no handler has been defined. However it would be nice if the full default response was customizable. I...