From: Jaime Marquínez Ferrándiz Date: Sun, 20 Sep 2015 10:23:13 +0000 (+0200) Subject: [youtube:history] Explain why it has disabled and skip test X-Git-Tag: 2021.01.07~7697 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/f005f96ea594a82969885ecd124b094c7e09949a [youtube:history] Explain why it has disabled and skip test --- diff --git a/test/test_all_urls.py b/test/test_all_urls.py index a9db42b30..a929afd15 100644 --- a/test/test_all_urls.py +++ b/test/test_all_urls.py @@ -99,7 +99,7 @@ def test_no_duplicates(self): def test_keywords(self): self.assertMatch(':ytsubs', ['youtube:subscriptions']) self.assertMatch(':ytsubscriptions', ['youtube:subscriptions']) - self.assertMatch(':ythistory', ['youtube:history']) + # self.assertMatch(':ythistory', ['youtube:history']) self.assertMatch(':thedailyshow', ['ComedyCentralShows']) self.assertMatch(':tds', ['ComedyCentralShows']) diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index b93156232..2529d8657 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -808,6 +808,8 @@ YoutubeIE, YoutubeChannelIE, YoutubeFavouritesIE, + # disabled because it can wipe the watch history (see #6893) + # remember to uncumment test in test/test_all_urls when it's fixed #YoutubeHistoryIE, YoutubePlaylistIE, YoutubeRecommendedIE,