diff options
author | garret1317 <garret@airmail.cc> | 2025-06-23 15:48:45 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-06-23 15:48:45 +0100 |
commit | ab56798ce8f62695eddaaee38bd99fbc9a2f2663 (patch) | |
tree | 61ec0922f22c9f954adf3e0ffcdcac1f1497b23d /misc | |
parent | 781ce8e7a74aa19df8793a3f29176d82c44f6b6b (diff) | |
download | yt-dlp-rajiko-master.tar.gz yt-dlp-rajiko-master.tar.bz2 yt-dlp-rajiko-master.zip |
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-x | misc/test_extractors.py | 7 |
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 |