File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1010
1111 Test the simplest proxy use scenario for smoke.
1212"""
13+ import sys
1314import time
1415import pytest
1516import tempfile
@@ -162,6 +163,10 @@ def test_integration_with_interception_flags(proxy_py_subprocess: int) -> None:
162163 IS_WINDOWS ,
163164 reason = 'OSError: [WinError 193] %1 is not a valid Win32 application' ,
164165) # type: ignore[misc]
166+ @pytest .mark .skipif (
167+ sys .version_info >= (3 , 10 ),
168+ reason = 'For version < 3.10, GHA integration run into OSError when flushing to clients' ,
169+ ) # type: ignore[misc]
165170def test_modify_chunk_response_integration (proxy_py_subprocess : int ) -> None :
166171 """An acceptance test for :py:class:`~proxy.plugin.ModifyChunkResponsePlugin`
167172 interception using ``curl`` through proxy.py."""
You can’t perform that action at this time.
0 commit comments