Skip to content

Commit abbf669

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

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/feature/test_async_scenarios.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
"""Test scenarios shortcut."""
2+
import sys
23
import textwrap
34

5+
import pytest
6+
47
from tests.utils import assert_outcomes
58

69

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

0 commit comments

Comments
 (0)