diff options
author | coletdjnz <coletdjnz@protonmail.com> | 2025-02-23 11:00:46 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-23 11:00:46 +1300 |
commit | 4445f37a7a66b248dbd8376c43137e6e441f138e (patch) | |
tree | b37561f1213bc25420f1f1004e8b6c8560e8b92f /test/testdata/yt_dlp_plugins/extractor/normal.py | |
parent | 3a1583ca75fb523cbad0e5e174387ea7b477d175 (diff) |
[core] Load plugins on demand (#11305)
- Adds `--no-plugin-dirs` to disable plugin loading
- `--plugin-dirs` now supports post-processors
Authored by: coletdjnz, Grub4K, pukkandan
Diffstat (limited to 'test/testdata/yt_dlp_plugins/extractor/normal.py')
-rw-r--r-- | test/testdata/yt_dlp_plugins/extractor/normal.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/testdata/yt_dlp_plugins/extractor/normal.py b/test/testdata/yt_dlp_plugins/extractor/normal.py index b09009bdc..996b2936f 100644 --- a/test/testdata/yt_dlp_plugins/extractor/normal.py +++ b/test/testdata/yt_dlp_plugins/extractor/normal.py @@ -2,8 +2,10 @@ from yt_dlp.extractor.common import InfoExtractor class NormalPluginIE(InfoExtractor): - pass + _VALID_URL = 'normalpluginie' + REPLACED = False class _IgnoreUnderscorePluginIE(InfoExtractor): + _VALID_URL = 'ignoreunderscorepluginie' pass |