File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77import pytest
88from testutil import (
99 skip_on_windows ,
10- skip_py38 ,
10+ skip_py_lt_311 ,
1111 skip_unless_linux ,
1212 skip_unless_macos ,
1313 spin ,
@@ -156,7 +156,7 @@ def test_lldb():
156156 assert "hi" in stdout (p )
157157
158158
159- @skip_py38 # python command does not run on py38
159+ @skip_py_lt_311 # python command does not run on older pythons
160160def test_parallel_builds ():
161161 spin ("build" )
162162 spin ("build" , "-C" , "parallel-build" )
Original file line number Diff line number Diff line change 1717 not sys .platform .startswith ("darwin" ), reason = "Skipped; platform not macOS"
1818)
1919
20- skip_py38 = pytest .mark .skipif (
21- sys .version_info [:2 ] == (3 , 8 ), reason = "Skipped; Python 3.8 "
20+ skip_py_lt_311 = pytest .mark .skipif (
21+ sys .version_info [:2 ] < (3 , 11 ), reason = "Skipped; Python < 3.11 "
2222)
2323
2424
You can’t perform that action at this time.
0 commit comments