X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Frun_tests.sh;h=dd37a80f5c8cdc37eda95293706fba5d4939a603;hb=a5b6102ea893d6943f9ffa9fc0677229c56c99ca;hp=7f4c1e083c3a1f0033cb45e5f8998958c4642ad5;hpb=1e2c3f61fc952620a52a8a3a79bcd1a6f7d8ecae;p=youtube-dl diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh old mode 100644 new mode 100755 index 7f4c1e083..dd37a80f5 --- a/devscripts/run_tests.sh +++ b/devscripts/run_tests.sh @@ -1,8 +1,10 @@ #!/bin/bash -DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter" +# 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="" +multiprocess_args="" case "$YTDL_TEST_SET" in core) @@ -10,10 +12,11 @@ case "$YTDL_TEST_SET" in ;; download) test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py" + multiprocess_args="--processes=4 --process-timeout=540" ;; *) break ;; esac -nosetests test --verbose $test_set +nosetests test --verbose $test_set $multiprocess_args