(self, httpbin)
| 645 | session.get(httpbin()) |
| 646 | |
| 647 | def test_respect_proxy_env_on_request(self, httpbin): |
| 648 | with override_environ(http_proxy=INVALID_PROXY): |
| 649 | with pytest.raises(ProxyError): |
| 650 | session = requests.Session() |
| 651 | session.request(method="GET", url=httpbin()) |
| 652 | |
| 653 | def test_proxy_authorization_preserved_on_request(self, httpbin): |
| 654 | proxy_auth_value = "Bearer XXX" |
nothing calls this directly
no test coverage detected