We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9453df0 commit 59dc904Copy full SHA for 59dc904
tests/integration/test_integration.py
@@ -10,6 +10,7 @@
10
11
Test the simplest proxy use scenario for smoke.
12
"""
13
+import sys
14
import time
15
import pytest
16
import tempfile
@@ -162,6 +163,10 @@ def test_integration_with_interception_flags(proxy_py_subprocess: int) -> None:
162
163
IS_WINDOWS,
164
reason='OSError: [WinError 193] %1 is not a valid Win32 application',
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]
170
def test_modify_chunk_response_integration(proxy_py_subprocess: int) -> None:
171
"""An acceptance test for :py:class:`~proxy.plugin.ModifyChunkResponsePlugin`
172
interception using ``curl`` through proxy.py."""
0 commit comments