Skip to content

Commit 390485b

Browse files
committed
skip auto test ytdlp for now
1 parent d824d58 commit 390485b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_ytplugin.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ def test_keyword_extractor(subtitles):
2020
assert c == 4
2121

2222

23+
# skip
24+
@pytest.mark.skip
2325
def test_segment_sampler(random_video):
2426
ytdlp = YTDLPPlugin()
2527
title, url, subs = next(ytdlp.generate_urls(random_video, get_subs=True))
@@ -41,6 +43,7 @@ def test_segment_sampler(random_video):
4143
assert len(os.listdir(tempdir)) > 0
4244

4345

46+
@pytest.mark.skip
4447
def test_single_url_gen(random_video):
4548
ytdlp = YTDLPPlugin()
4649
title, url, subs = next(ytdlp.generate_urls(random_video, get_subs=True))
@@ -49,6 +52,7 @@ def test_single_url_gen(random_video):
4952
assert subs and len(subs) > 0, f"Expected subtitles, got {subs}"
5053

5154

55+
@pytest.mark.skip
5256
def test_search_url_gen():
5357
ytdlp = YTDLPPlugin()
5458
expected_results, results = 5, 0

0 commit comments

Comments
 (0)