Skip to content

Commit 87877f8

Browse files
authored
Also skip xonsh tests on Python 3.10 (#2013)
1 parent 25c45cf commit 87877f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/activation/test_xonsh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
@pytest.mark.slow
1212
@pytest.mark.skipif(
13-
sys.platform == "win32" or sys.version_info[0:2] == (3, 9),
13+
sys.platform == "win32" or sys.version_info[0:2] >= (3, 9),
1414
reason="xonsh on 3.9 or Windows is broken - https://github.com/xonsh/xonsh/issues/3689",
1515
)
1616
@flaky(max_runs=2, min_passes=1)

0 commit comments

Comments
 (0)