Releases: kevin1024/pytest-httpbin
Releases · kevin1024/pytest-httpbin
v2.0.0
Version 2.0.0!
This is a major release since it drops comparability with some older versions of python.
Huge thanks to @graingert for bringing pytest-httpbin
into the modern world!
v1.0.1
v1.0.0
Update included self-signed cert to include IP address in SAN (See #52). Full version bump because this could be a breaking change for those depending on the certificate missing the IP address in the SAN (as it seems the requests test suite does)
Only use @pytest.fixture decorator once (thanks @hroncok)
Fix a few README typos (thanks @hemberger)
Fixed port feature, thread.join(), 3.6 support
- Allow to run httpbin on fixed port using environment variables (thanks @hroncok)
- Allow server to be thread.join()ed (thanks @graingert)
- Add support for Python 3.6 (thanks @graingert)
Remove Threading and fix packaging problem
Merge pull request #31 from flupke/flupke-patch-1 Add DESCRIPTION.rst in MANIFEST.in
Fix bug with ssl certificate on pypy
v0.1.1 bump version
Fix hang in SSL socket with broken certificate
v0.0.6 Bump version
Fix broken version parsing in 0.0.4
Fix broken version parsing in 0.0.4
Fix errors with multiple requests in one session; Add httpbin_ca_bundle fixture
- 0.0.4:
- Fix
BadStatusLine
error that occurs when sending multiple requests
in a single session (PR #16). Thanks @msabramo! - Fix #9 ("Can't be installed at the same time than pytest?") (PR
#14). Thanks @msabramo! - Add
httpbin_ca_bundle
pytest fixture. With this fixture there is
no need to specify the bundle on every request. And you don't have
to care about where it is located (PR #8). Thanks @t-8ch!
- Fix