Dropping httpbin
requirement from tests.
#860
tomchristie
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We're currently using
httpbin
as a requirement in our test cases.We could instead be working with something much slimmer here since all we actually want is, a background thread running...
HTTP/1.1 hello world
message.HTTP/1.1 hello world
message.These could either be over the lifespan of a single test, over the lifespan of a test module, or over the lifespan of the suite. It probably doesn't matter too much which.
We could either do this from scratch with a low-level
socket
implementation, or we could lean on stdlib's built-insocketserver
/http.server
...Beta Was this translation helpful? Give feedback.
All reactions