aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/misc
diff options
context:
space:
mode:
authorgarret1317 <garret@airmail.cc>2025-06-23 15:48:45 +0100
committergarret1317 <garret@airmail.cc>2025-06-23 15:48:45 +0100
commitab56798ce8f62695eddaaee38bd99fbc9a2f2663 (patch)
tree61ec0922f22c9f954adf3e0ffcdcac1f1497b23d /misc
parent781ce8e7a74aa19df8793a3f29176d82c44f6b6b (diff)
downloadyt-dlp-rajiko-ab56798ce8f62695eddaaee38bd99fbc9a2f2663.tar.gz
yt-dlp-rajiko-ab56798ce8f62695eddaaee38bd99fbc9a2f2663.tar.bz2
yt-dlp-rajiko-ab56798ce8f62695eddaaee38bd99fbc9a2f2663.zip
run all extractor tests from test scriptHEADmaster
may as well run them all from one place even if theyre not defined in one place + this way i don't have to patch test.helper separately to get it to load the plugin
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/test_extractors.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/misc/test_extractors.py b/misc/test_extractors.py
index 7c1a2c7..18e9783 100755
--- a/misc/test_extractors.py
+++ b/misc/test_extractors.py
@@ -42,7 +42,7 @@ def get_test_timefields(airtime, release_time):
-from yt_dlp_plugins.extractor.radiko import RadikoTimeFreeIE, RadikoShareIE
+from yt_dlp_plugins.extractor.radiko import RadikoTimeFreeIE, RadikoShareIE, RadikoLiveIE, RadikoShareIE, RadikoPersonIE, RadikoStationButtonIE
RadikoTimeFreeIE._TESTS = []
@@ -137,7 +137,10 @@ RadikoShareIE._TESTS = [{
-IEs = [RadikoTimeFreeIE, RadikoShareIE]
+IEs = [
+ RadikoTimeFreeIE, RadikoShareIE,
+ RadikoLiveIE, RadikoShareIE, RadikoPersonIE, RadikoStationButtonIE
+]
import test.helper as th