X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=devscripts%2Frun_tests.sh;fp=devscripts%2Frun_tests.sh;h=c608072156eb02c7bb06cc42b37eae30fc6cf5a9;hb=8936f68a0ba3284c88ec619fb4cc22eb0499e7f3;hp=7f4c1e083c3a1f0033cb45e5f8998958c4642ad5;hpb=c58b7ffef43f60fa6a183c849cfdca42e36eae0c;p=youtube-dl diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh index 7f4c1e083..c60807215 100755 --- a/devscripts/run_tests.sh +++ b/devscripts/run_tests.sh @@ -3,6 +3,7 @@ DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter" test_set="" +multiprocess_args="" case "$YTDL_TEST_SET" in core) @@ -10,10 +11,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