aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/run_tests.sh
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-07-23 20:18:15 +0530
committerGitHub <noreply@github.com>2021-07-23 20:18:15 +0530
commit060ac76257a8c1f7370a8a571821c1d73377701f (patch)
tree00151756376ba250a7de158f3218ae58b89c560b /devscripts/run_tests.sh
parent063c409dfb6b0d525cbbd6ba1fbb53db2c0c99db (diff)
downloadhypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.tar.lz
hypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.tar.xz
hypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.zip
[test] Use `pytest` instead of `nosetests` (#482)
`nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480
Diffstat (limited to 'devscripts/run_tests.sh')
-rwxr-xr-xdevscripts/run_tests.sh37
1 files changed, 15 insertions, 22 deletions
diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh
index b5a56facb..99ab0a793 100755
--- a/devscripts/run_tests.sh
+++ b/devscripts/run_tests.sh
@@ -1,22 +1,15 @@
-#!/bin/bash
-
-# Keep this list in sync with the `offlinetest` target in Makefile
-DOWNLOAD_TESTS="age_restriction|download|iqiyi_sdk_interpreter|overwrites|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
+#!/bin/sh
+
+if [ -z $1 ]; then
+ test_set='test'
+elif [ $1 = 'core' ]; then
+ test_set='not download'
+elif [ $1 = 'download' ]; then
+ test_set='download'
+else
+ echo 'Invalid test type "'$1'". Use "core" | "download"'
+ exit 1
+fi
+
+echo python3 -m pytest -k $test_set
+python3 -m pytest -k "$test_set"