2017-02-05 05:33:23 +09:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-02-23 21:48:54 +09:00
|
|
|
DOWNLOAD_TESTS="age_restriction|download|subtitles|write_annotations|iqiyi_sdk_interpreter|youtube_lists"
|
2017-02-05 05:33:23 +09:00
|
|
|
|
|
|
|
test_set=""
|
2015-10-21 01:37:28 +09:00
|
|
|
multiprocess_args=""
|
2017-02-05 05:33:23 +09:00
|
|
|
|
|
|
|
case "$YTDL_TEST_SET" in
|
|
|
|
core)
|
|
|
|
test_set="-I test_($DOWNLOAD_TESTS)\.py"
|
|
|
|
;;
|
|
|
|
download)
|
|
|
|
test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
|
2015-10-21 01:37:28 +09:00
|
|
|
multiprocess_args="--processes=4 --process-timeout=540"
|
2017-02-05 05:33:23 +09:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-10-21 01:37:28 +09:00
|
|
|
nosetests test --verbose $test_set $multiprocess_args
|