From d933a0ef767c08f4c4c3aa090070b80e24ec4f33 Mon Sep 17 00:00:00 2001 From: nicole trinity Date: Mon, 29 Jul 2024 16:29:12 -0400 Subject: [PATCH] skip tests for la1ere extractor as its only available in FR --- youtube_dl/extractor/la1ere.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/extractor/la1ere.py b/youtube_dl/extractor/la1ere.py index f7c4808f7..b1008fcf7 100644 --- a/youtube_dl/extractor/la1ere.py +++ b/youtube_dl/extractor/la1ere.py @@ -30,6 +30,7 @@ class La1ereExrtractorBaseIE(InfoExtractor): class La1ereExtractorPageIE(La1ereExrtractorBaseIE): _VALID_URL = r'https://la1ere.francetvinfo.fr/(?P[^/]+)/programme-video/diffusion/(?P[^\.]+).html' _TEST = { + 'skip': 'Only available in FR', 'url': 'https://la1ere.francetvinfo.fr/martinique/programme-video/diffusion/4774522-origine-kongo.html', 'info_dict': { 'ext': 'mp4', @@ -56,6 +57,7 @@ class La1ereExtractorPageIE(La1ereExrtractorBaseIE): class La1ereExtractorShowPageIE(La1ereExrtractorBaseIE): _VALID_URL = r'https://la1ere.francetvinfo.fr/(?P[^/]+)/programme-video/(?P[^/]+)/diffusion/(?P[^\.]+).html' _TEST = { + 'skip': 'Only available in FR', 'url': 'https://la1ere.francetvinfo.fr/guadeloupe/programme-video/la1ere_guadeloupe_le-13h-en-guadeloupe/diffusion/5643549-emission-du-lundi-29-janvier-2024.html', 'info_dict': { 'ext': 'mp4',