From 69fb9c37fbf0b826ed98d5a78ef7b52a79b9cfef Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 28 Feb 2024 19:13:40 -0500 Subject: [PATCH] Ignore `install_git_private_https_pat_and_username` for now (#2060) ## Summary Temporarily disabling `install_git_private_https_pat_and_username` since running this test can break your local Git authentication for other projects. I experienced this today and keep finding myself needing to ignore it locally. See: https://github.com/astral-sh/uv/issues/1980. --- crates/uv/tests/pip_install.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/uv/tests/pip_install.rs b/crates/uv/tests/pip_install.rs index 8c28cb744..c18aca907 100644 --- a/crates/uv/tests/pip_install.rs +++ b/crates/uv/tests/pip_install.rs @@ -973,8 +973,12 @@ fn install_git_private_https_pat_at_ref() { /// Install a package from a private GitHub repository using a PAT and username /// An arbitrary username is supported when using a PAT. +/// +/// TODO(charlie): This test modifies the user's keyring. +/// See: . #[test] #[cfg(feature = "git")] +#[ignore] fn install_git_private_https_pat_and_username() { let context = TestContext::new("3.8"); let token = decode_token(READ_ONLY_GITHUB_TOKEN);