X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=devscripts%2Frun_tests.sh;h=6ba26720dcc57929f2bad9550c5a256a3fc09953;hb=19f3821821ada01fbf9b466402bc1d0366b3edb2;hp=7f4c1e083c3a1f0033cb45e5f8998958c4642ad5;hpb=1de9f78e71214e130b5882662cdcd716b737e6ca;p=youtube-dl diff --git a/devscripts/run_tests.sh b/devscripts/run_tests.sh old mode 100644 new mode 100755 index 7f4c1e083..6ba26720d --- a/devscripts/run_tests.sh +++ b/devscripts/run_tests.sh @@ -1,8 +1,9 @@ #!/bin/bash -DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter" +DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter|youtube_lists" 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