]> jfr.im git - yt-dlp.git/blobdiff - devscripts/run_tests.sh
[docs] Various manpage fixes
[yt-dlp.git] / devscripts / run_tests.sh
index 2fa7d16e2087341c3aa90742cd47bc60126f2caa..123ceb1ee4f95e310a8acb7ebae65fdb1331d55d 100755 (executable)
@@ -1,22 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env sh
 
-# Keep this list in sync with the `offlinetest` target in Makefile
-DOWNLOAD_TESTS="age_restriction|download|iqiyi_sdk_interpreter|socks|subtitles|write_annotations|youtube_lists|youtube_signature|post_hooks"
-
-test_set=""
-multiprocess_args=""
-
-case "$YTDL_TEST_SET" in
-    core)
-        test_set="-I test_($DOWNLOAD_TESTS)\.py"
-    ;;
-    download)
-        test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
-        multiprocess_args="--processes=4 --process-timeout=540"
-    ;;
-    *)
-        break
-    ;;
-esac
-
-nosetests test --verbose $test_set $multiprocess_args
+>&2 echo 'run_tests.sh is deprecated. Please use `devscripts/run_tests.py` instead'
+python3 devscripts/run_tests.py "$1"