about summary refs log tree commit diff
path: root/devscripts
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-12-20 04:17:19 +0700
committerSergey M․ <dstftw@gmail.com>2020-12-20 06:48:20 +0700
commita8b31505edbf4d9608b2d964b936b6720dcbb40d (patch)
tree91c50b39efae1b387dff002fda9c7ccda75a1076 /devscripts
parent90a271e91488d439a6f19033681fb10b33d30919 (diff)
downloadyoutube-dl-a8b31505edbf4d9608b2d964b936b6720dcbb40d.tar.gz
youtube-dl-a8b31505edbf4d9608b2d964b936b6720dcbb40d.tar.xz
youtube-dl-a8b31505edbf4d9608b2d964b936b6720dcbb40d.zip
Switch to GitHub actions for CI
Travis CI has ignored our requests and does not look to be interested in providing OSS credits for youtube-dl
Diffstat (limited to 'devscripts')
-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:"=%