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

Easily test your HTTP library against a local copy of httpbin.org

Results 13 pytest-httpbin issues
Sort by recently updated
recently updated
newest added

Add gitignore for .python-version which defines pyenv local venv version

https://github.com/kevin1024/pytest-httpbin/blob/0bd7637a5c59b1a8376b9a4f051b02a97abb8c1b/pyproject.toml#L40-L43

pip has dropped support for Python 3.7 in [pypa/pip#11944](https://github.com/pypa/pip/pull/11944) recently, so we need to follow.

httpbin fails with werkzeug 2.1.0 but httpbin is not maintained for 4 years. Consider to find another solution to replace httpbin or take over the httpbin code parts. See https://github.com/postmanlabs/httpbin/issues/673

I'm investigating various approaches for using py.test to unit test some code which makes HTTP requests. (It's a class that invokes webhooks in the background.) I like the approach of...

It looks like `/json` currently returns a 404 with pytest-httpbin, while it returns a 200 with httpbin.org. All other response formats return a 200 with both pytest-httpbin and httpbin.org. Minimal...

@kevin1024 it might be worth moving this project into pytest-dev see https://pytest.org/en/7.0.x/contributing.html#submitting-plugins-to-pytest-dev

When posting data to the 'status/{status_code}' route on the ssl version it fails with a connection reset. This happens neither on the local http server nor on the remote https://httpbin.org...