Skip to content

Commit 8179af6

Browse files
committed
xfail the shutdown event callbacks where they presently fail
1 parent 35e9718 commit 8179af6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

testing/test_basic.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
import sys
23
import textwrap
34

@@ -1140,6 +1141,13 @@ def test_succeed():
11401141
assert_outcomes(rr, {"passed": 1})
11411142

11421143

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+
)
11431151
@pytest.mark.parametrize(argnames="kill", argvalues=[False, True])
11441152
@pytest.mark.parametrize(argnames="event", argvalues=["shutdown"])
11451153
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)