From 405858e3e7d2e5c06e49f1c195c46d64916afb65 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 14 Feb 2025 16:12:29 +0100 Subject: test(crates/yt_dlp): Ignore tests that hang forever --- crates/yt_dlp/src/tests.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/yt_dlp/src/tests.rs b/crates/yt_dlp/src/tests.rs index b48deb4..b072348 100644 --- a/crates/yt_dlp/src/tests.rs +++ b/crates/yt_dlp/src/tests.rs @@ -26,6 +26,7 @@ static YT_OPTS: LazyLock> = LazyLock::new(|| { }); #[tokio::test] +#[ignore = "This test hangs forever"] async fn test_extract_info_video() { let info = crate::extract_info( &YT_OPTS, @@ -41,6 +42,7 @@ async fn test_extract_info_video() { } #[tokio::test] +#[ignore = "This test hangs forever"] async fn test_extract_info_url() { let err = crate::extract_info( &YT_OPTS, @@ -56,6 +58,7 @@ async fn test_extract_info_url() { } #[tokio::test] +#[ignore = "This test hangs forever"] async fn test_extract_info_playlist() { let err = crate::extract_info( &YT_OPTS, @@ -70,6 +73,7 @@ async fn test_extract_info_playlist() { println!("{err:#?}"); } #[tokio::test] +#[ignore = "This test hangs forever"] async fn test_extract_info_playlist_full() { let err = crate::extract_info( &YT_OPTS, -- cgit 1.4.1