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

I am trying to do cross-domain cookie testing to see whether a different domain can overwrite the cookie from another domain. I was wondering if such a test is currently...

Against the local `httpbin` It fails every time and the failuire has two flavours (see bellow). Relevant: https://github.com/kennethreitz/requests/issues/2422 **`test.py`** ``` python import sys import requests def stream(): yield b'ham' yield...

httpbin is deployed in production using gunicorn. The intent of pytest-httpbin is to provide a local copy of the hosted version of httpbin. Therefore, to keep everything as similar as...