We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d5c5b commit 50d530fCopy full SHA for 50d530f
tests/test_iostream.py
@@ -8,6 +8,16 @@
8
9
from pybind11_tests import iostream as m
10
11
+if sys.platform == "win32":
12
+ wv_build = sys.getwindowsversion().build
13
+ skip_if_ge = 26100
14
+ if wv_build >= skip_if_ge:
15
+ pytest.skip(
16
+ f"Windows build {wv_build} >= {skip_if_ge}:"
17
+ " Skipping iostream capture (redirection regression under investigation)",
18
+ allow_module_level=True,
19
+ )
20
+
21
22
def test_captured(capsys):
23
msg = "I've been redirected to Python, I hope!"
0 commit comments