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 50d530f commit 8b79a85Copy full SHA for 8b79a85
tests/test_iostream.py
@@ -6,15 +6,16 @@
6
7
import pytest
8
9
+import env
10
from pybind11_tests import iostream as m
11
-if sys.platform == "win32":
12
+if env.WIN:
13
wv_build = sys.getwindowsversion().build
14
skip_if_ge = 26100
15
if wv_build >= skip_if_ge:
16
pytest.skip(
17
f"Windows build {wv_build} >= {skip_if_ge}:"
- " Skipping iostream capture (redirection regression under investigation)",
18
+ " Skipping iostream capture (redirection regression needs investigation)",
19
allow_module_level=True,
20
)
21
0 commit comments