about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-10-21 00:37:28 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-02-19 21:26:35 +0800
commit8936f68a0ba3284c88ec619fb4cc22eb0499e7f3 (patch)
tree5a046603f06fcaaaed5d04722bb86862a666e911 /devscripts
parentc58b7ffef43f60fa6a183c849cfdca42e36eae0c (diff)
downloadyoutube-dl-8936f68a0ba3284c88ec619fb4cc22eb0499e7f3.tar.gz
youtube-dl-8936f68a0ba3284c88ec619fb4cc22eb0499e7f3.tar.xz
youtube-dl-8936f68a0ba3284c88ec619fb4cc22eb0499e7f3.zip
[travis] Run tests in parallel
[test_download] Print test names in case of network errors

[test_download] Add comments for nose parameters

[test_download] Modify outtmpl to prevent info JSON filename conflicts

Thanks @jaimeMF for the idea.

[travis] Only download tests should be run in parallel
Diffstat (limited to 'devscripts')
-rwxr-xr-xdevscripts/run_tests.sh4
1 files changed, 3 insertions, 1 deletions
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