(self, url)
| 261 | ), |
| 262 | ) |
| 263 | def test_bypass_no_proxy_keyword(self, url): |
| 264 | no_proxy = "192.168.1.1,requests.com" |
| 265 | assert get_environ_proxies(url, no_proxy=no_proxy) == {} |
| 266 | |
| 267 | @pytest.mark.parametrize( |
| 268 | "url", |
nothing calls this directly
no test coverage detected