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 10
10
11
11
Test the simplest proxy use scenario for smoke.
12
12
"""
13
+ import sys
13
14
import time
14
15
import pytest
15
16
import tempfile
@@ -162,6 +163,10 @@ def test_integration_with_interception_flags(proxy_py_subprocess: int) -> None:
162
163
IS_WINDOWS ,
163
164
reason = 'OSError: [WinError 193] %1 is not a valid Win32 application' ,
164
165
) # 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]
165
170
def test_modify_chunk_response_integration (proxy_py_subprocess : int ) -> None :
166
171
"""An acceptance test for :py:class:`~proxy.plugin.ModifyChunkResponsePlugin`
167
172
interception using ``curl`` through proxy.py."""
You can’t perform that action at this time.
0 commit comments