]> jfr.im git - yt-dlp.git/blobdiff - devscripts/run_tests.sh
[cleanup,build] Cleanup some build-related code
[yt-dlp.git] / devscripts / run_tests.sh
old mode 100644 (file)
new mode 100755 (executable)
index 7f4c1e0..e9904ae
@@ -1,19 +1,14 @@
-#!/bin/bash
-
-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
+#!/bin/sh
+
+if [ -z $1 ]; then
+    test_set='test'
+elif [ $1 = 'core' ]; then
+    test_set="-m not download"
+elif [ $1 = 'download' ]; then
+    test_set="-m download"
+else
+    echo 'Invalid test type "'$1'". Use "core" | "download"'
+    exit 1
+fi
+
+python3 -bb -Werror -m pytest "$test_set"