Update install_extra_index_url_has_priority to avoid packaging breakage (#2337)

`packaging==24.0` came out which broke this test. It has to run without
`--exclude-newer` since it's testing an index that doesn't support it.
Instead, though, we can just disable dependencies, since the test still
exercises the same logic.
This commit is contained in:
Charlie Marsh 2024-03-10 06:50:19 -07:00 committed by GitHub
parent 262ca8b576
commit 7978492122
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -856,6 +856,7 @@ fn install_extra_index_url_has_priority() {
// the fix, `uv` will check pypi.org first since it is given
// priority via --extra-index-url.
.arg("black==24.2.0")
.arg("--no-deps")
.arg("--exclude-newer")
.arg("2024-03-09"), @r###"
success: true
@ -863,15 +864,10 @@ fn install_extra_index_url_has_priority() {
----- stdout -----
----- stderr -----
Resolved 6 packages in [TIME]
Downloaded 6 packages in [TIME]
Installed 6 packages in [TIME]
Resolved 1 package in [TIME]
Downloaded 1 package in [TIME]
Installed 1 package in [TIME]
+ black==24.2.0
+ click==8.1.7
+ mypy-extensions==1.0.0
+ packaging==23.2
+ pathspec==0.12.1
+ platformdirs==4.2.0
"###
);