Skip to content

Commit

Permalink
Auto merge of #14546 - ehuss:disable-shell-completions, r=weihanglo
Browse files Browse the repository at this point in the history
Disable the shell_completions tests

The shell_completions tests have a few issues that are causing some problems. See #14545 for a description. This disables the tests until those can get resolved.
  • Loading branch information
bors committed Sep 14, 2024
2 parents d949021 + 47f4cdc commit 468f150
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/testsuite/shell_completions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use completest_pty::Runtime;
use snapbox::assert_data_eq;

#[cargo_test]
#[ignore = "disabled, see https://github.com/rust-lang/cargo/issues/14545"]
fn bash() {
// HACK: At least on CI, bash is not working on macOS
if cfg!(target_os = "macos") {
Expand All @@ -30,6 +31,7 @@ fn bash() {
}

#[cargo_test]
#[ignore = "disabled, see https://github.com/rust-lang/cargo/issues/14545"]
fn elvish() {
// HACK: At least on CI, elvish is not working on macOS
if cfg!(target_os = "macos") {
Expand All @@ -56,6 +58,7 @@ fn elvish() {
}

#[cargo_test]
#[ignore = "disabled, see https://github.com/rust-lang/cargo/issues/14545"]
fn fish() {
// HACK: At least on CI, fish is not working on macOS
if cfg!(target_os = "macos") {
Expand Down Expand Up @@ -126,6 +129,7 @@ yank
}

#[cargo_test]
#[ignore = "disabled, see https://github.com/rust-lang/cargo/issues/14545"]
fn zsh() {
let input = "cargo \t\t";
let expected = snapbox::str![
Expand Down

0 comments on commit 468f150

Please sign in to comment.