(self)
| 176 | |
| 177 | @pytest.mark.skip(reason='Flaky under the CI environment') |
| 178 | def test_http3_works(self) -> None: |
| 179 | response = impit.get('https://curl.se', force_http3=True) |
| 180 | assert response.status_code == 200 |
| 181 | assert 'curl' in response.text |
| 182 | assert response.http_version == 'HTTP/3' |
| 183 | |
| 184 | @pytest.mark.parametrize( |
| 185 | ('method'), |