File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -60,17 +60,24 @@ def access_pypi():
6060 'pip<20.1' ,
6161 marks = pytest .mark .xfail (
6262 'sys.version_info > (3, 12)' ,
63- reason = "pip 21 requried for Python 3.12 and later" ,
63+ reason = "pip 22 requried for Python 3.12 and later" ,
6464 ),
6565 ),
6666 pytest .param (
6767 'pip<21' ,
6868 marks = pytest .mark .xfail (
6969 'sys.version_info > (3, 12)' ,
70- reason = "pip 21 requried for Python 3.12 and later" ,
70+ reason = "pip 22 requried for Python 3.12 and later" ,
7171 ),
7272 ),
73- 'pip<22' ,
73+ pytest .param (
74+ 'pip<22' ,
75+ marks = pytest .mark .xfail (
76+ 'sys.version_info > (3, 12)' ,
77+ reason = "pip 22 requried for Python 3.12 and later" ,
78+ ),
79+ ),
80+ # 'pip<23',
7481 pytest .param (
7582 'https://github.com/pypa/pip/archive/main.zip' ,
7683 marks = pytest .mark .xfail (reason = '#2975' ),
You can’t perform that action at this time.
0 commit comments