Skip to content

Commit 160539d

Browse files
committed
xfail async scenarios test on py3.10
1 parent 677a47f commit 160539d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: tests/feature/test_async_scenarios.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
"""Test scenarios shortcut."""
22
import textwrap
33

4+
import pytest
5+
46
from tests.utils import assert_outcomes
57

68

9+
@pytest.mark.xfail(
10+
sys.version_info >= (3, 10), reason="trio does not support py3.10 https://github.com/python-trio/trio/pull/1921"
11+
)
712
def test_scenarios(testdir, pytest_params):
813
"""Test scenarios shortcut (used together with @scenario for individual test override)."""
914
testdir.makeini(

0 commit comments

Comments
 (0)