1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-31 20:11:26 +00:00

skip test when unavailable

This commit is contained in:
c-basalt
2025-04-28 23:55:23 -04:00
parent 0061546a82
commit fbd5ce74c0
2 changed files with 17 additions and 11 deletions

View File

@@ -88,7 +88,7 @@ class JSIWrapper:
self._url = self._sanitize_url(url)
self.preferences: set[JSIPreference] = {
order_to_pref(self._load_pref_from_option(), 10000),
order_to_pref(preferred_order, 100)
order_to_pref(preferred_order, 100),
} | _JSI_PREFERENCES
handler_classes = self._load_allowed_jsi_cls(only_include, exclude)