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 35e9718 commit 8179af6Copy full SHA for 8179af6
testing/test_basic.py
@@ -1,3 +1,4 @@
1
+import os
2
import sys
3
import textwrap
4
@@ -1140,6 +1141,13 @@ def test_succeed():
1140
1141
assert_outcomes(rr, {"passed": 1})
1142
1143
1144
+@pytest.mark.xfail(
1145
+ condition=(
1146
+ sys.platform == "win32"
1147
+ or os.environ.get("REACTOR", "").startswith("qt")
1148
+ ),
1149
+ reason="Needs handled on Windows and with qt5reactor.",
1150
+)
1151
@pytest.mark.parametrize(argnames="kill", argvalues=[False, True])
1152
@pytest.mark.parametrize(argnames="event", argvalues=["shutdown"])
1153
@pytest.mark.parametrize(
0 commit comments