aboutsummaryrefslogtreecommitdiffstats
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/yt_dlp/src/tests.rs4
1 files changed, 4 insertions, 0 deletions
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<serde_json::Map<String, Value>> = 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,