1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2026-04-26 00:33:26 +00:00
Files
youtube-dl/devscripts/run_tests.sh
T

23 lines
562 B
Bash
Raw Normal View History

#!/bin/bash
# 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"
test_set=""
2015-10-21 00:37:28 +08:00
multiprocess_args=""
case "$YTDL_TEST_SET" in
core)
test_set="-I test_($DOWNLOAD_TESTS)\.py"
;;
download)
test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
2015-10-21 00:37:28 +08:00
multiprocess_args="--processes=4 --process-timeout=540"
;;
*)
break
;;
esac
2015-10-21 00:37:28 +08:00
nosetests test --verbose $test_set $multiprocess_args