2017-02-04 20:33:23 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-11-27 13:32:06 +00:00
|
|
|
# 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"
|
2017-02-04 20:33:23 +00:00
|
|
|
|
|
|
|
test_set=""
|
2015-10-20 16:37:28 +00:00
|
|
|
multiprocess_args=""
|
2017-02-04 20:33:23 +00:00
|
|
|
|
|
|
|
case "$YTDL_TEST_SET" in
|
|
|
|
core)
|
|
|
|
test_set="-I test_($DOWNLOAD_TESTS)\.py"
|
|
|
|
;;
|
|
|
|
download)
|
|
|
|
test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
|
2015-10-20 16:37:28 +00:00
|
|
|
multiprocess_args="--processes=4 --process-timeout=540"
|
2017-02-04 20:33:23 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2015-10-20 16:37:28 +00:00
|
|
|
nosetests test --verbose $test_set $multiprocess_args
|