aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/run_tests.bat
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-01-07 12:11:05 +0530
committerpukkandan <pukkandan@gmail.com>2021-01-07 17:22:45 +0530
commitc76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2 (patch)
treeed835b466e6350eef3960198a8569f946a79bac0 /devscripts/run_tests.bat
parentdbbbe555d7a64ff65de5f8a78cc276a848c2e227 (diff)
downloadhypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.tar.lz
hypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.tar.xz
hypervideo-pre-c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2.zip
Preparing for release
Diffstat (limited to 'devscripts/run_tests.bat')
-rw-r--r--devscripts/run_tests.bat17
1 files changed, 17 insertions, 0 deletions
diff --git a/devscripts/run_tests.bat b/devscripts/run_tests.bat
new file mode 100644
index 000000000..79359b5a7
--- /dev/null
+++ b/devscripts/run_tests.bat
@@ -0,0 +1,17 @@
+@echo off
+
+rem Keep this list in sync with the `offlinetest` target in Makefile
+set DOWNLOAD_TESTS="age_restriction^|download^|iqiyi_sdk_interpreter^|socks^|subtitles^|write_annotations^|youtube_lists^|youtube_signature"
+
+if "%YTDL_TEST_SET%" == "core" (
+ set test_set="-I test_("%DOWNLOAD_TESTS%")\.py"
+ set multiprocess_args=""
+) else if "%YTDL_TEST_SET%" == "download" (
+ set test_set="-I test_(?!"%DOWNLOAD_TESTS%").+\.py"
+ set multiprocess_args="--processes=4 --process-timeout=540"
+) else (
+ echo YTDL_TEST_SET is not set or invalid
+ exit /b 1
+)
+
+nosetests test --verbose %test_set:"=% %multiprocess_args:"=%