File tree 1 file changed +2
-12
lines changed
1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -152,24 +152,14 @@ def test_install_fails_if_extra_at_end(
152
152
script .scratch_path / "requirements.txt" ,
153
153
expect_error = True ,
154
154
)
155
- assert "Extras after version " in result .stderr
155
+ assert "Invalid requirement: 'requires_simple_extra>=0.1[extra]' " in result .stderr
156
156
157
157
158
158
@pytest .mark .parametrize (
159
159
"specified_extra, requested_extra" ,
160
160
[
161
161
("Hop_hOp-hoP" , "Hop_hOp-hoP" ),
162
- pytest .param (
163
- "Hop_hOp-hoP" ,
164
- "hop-hop-hop" ,
165
- marks = pytest .mark .xfail (
166
- reason = (
167
- "matching a normalized extra request against an"
168
- "unnormalized extra in metadata requires PEP 685 support "
169
- "in packaging (see pypa/pip#11445)."
170
- ),
171
- ),
172
- ),
162
+ ("Hop_hOp-hoP" , "hop-hop-hop" ),
173
163
("hop-hop-hop" , "Hop_hOp-hoP" ),
174
164
],
175
165
)
You can’t perform that action at this time.
0 commit comments