mirror of https://github.com/astral-sh/uv
Fix failing test (#880)
This commit is contained in:
parent
d47eeccca8
commit
d6fa628e11
|
|
@ -2776,6 +2776,8 @@ fn trailing_slash() -> Result<()> {
|
||||||
.arg(cache_dir.path())
|
.arg(cache_dir.path())
|
||||||
.arg("--index-url")
|
.arg("--index-url")
|
||||||
.arg("https://test.pypi.org/simple")
|
.arg("https://test.pypi.org/simple")
|
||||||
|
.arg("--exclude-newer")
|
||||||
|
.arg(EXCLUDE_NEWER)
|
||||||
.env("VIRTUAL_ENV", venv.as_os_str())
|
.env("VIRTUAL_ENV", venv.as_os_str())
|
||||||
.current_dir(&temp_dir), @r###"
|
.current_dir(&temp_dir), @r###"
|
||||||
success: true
|
success: true
|
||||||
|
|
@ -2802,6 +2804,8 @@ fn trailing_slash() -> Result<()> {
|
||||||
.arg(cache_dir.path())
|
.arg(cache_dir.path())
|
||||||
.arg("--index-url")
|
.arg("--index-url")
|
||||||
.arg("https://test.pypi.org/simple/")
|
.arg("https://test.pypi.org/simple/")
|
||||||
|
.arg("--exclude-newer")
|
||||||
|
.arg(EXCLUDE_NEWER)
|
||||||
.env("VIRTUAL_ENV", venv.as_os_str())
|
.env("VIRTUAL_ENV", venv.as_os_str())
|
||||||
.current_dir(&temp_dir), @r###"
|
.current_dir(&temp_dir), @r###"
|
||||||
success: true
|
success: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue