-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
in test_http.py, for example tests that use:
crate-python/tests/client/test_http.py
Line 563 in 371e125
| class SharedStateRequestHandler(BaseHTTPRequestHandler): |
Why are we testing this on a threaded HTTP server, we could literally just get the headers from a request and check that it's what we'd expect, without any overhead of setting up a thread and an http server. Other tests that also start an http server have the same issue, we could test the exact same thing without all of this machinery.