]> jfr.im git - yt-dlp.git/blobdiff - devscripts/run_tests.sh
[ie/LCI] Fix extractor (#10025)
[yt-dlp.git] / devscripts / run_tests.sh
old mode 100644 (file)
new mode 100755 (executable)
index 7f4c1e0..123ceb1
@@ -1,19 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env sh
 
-DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter"
-
-test_set=""
-
-case "$YTDL_TEST_SET" in
-    core)
-        test_set="-I test_($DOWNLOAD_TESTS)\.py"
-    ;;
-    download)
-        test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
-    ;;
-    *)
-        break
-    ;;
-esac
-
-nosetests test --verbose $test_set
+>&2 echo 'run_tests.sh is deprecated. Please use `devscripts/run_tests.py` instead'
+python3 devscripts/run_tests.py "$1"