aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/run_tests.bat
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-07-23 20:18:15 +0530
committerGitHub <noreply@github.com>2021-07-23 20:18:15 +0530
commit060ac76257a8c1f7370a8a571821c1d73377701f (patch)
tree00151756376ba250a7de158f3218ae58b89c560b /devscripts/run_tests.bat
parent063c409dfb6b0d525cbbd6ba1fbb53db2c0c99db (diff)
downloadhypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.tar.lz
hypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.tar.xz
hypervideo-pre-060ac76257a8c1f7370a8a571821c1d73377701f.zip
[test] Use `pytest` instead of `nosetests` (#482)
`nosetests` is no longer being maintained : https://github.com/nose-devs/nose/issues/1099 and will stop working in py 3.10 as can be seen in #480
Diffstat (limited to 'devscripts/run_tests.bat')
-rw-r--r--devscripts/run_tests.bat21
1 files changed, 10 insertions, 11 deletions
diff --git a/devscripts/run_tests.bat b/devscripts/run_tests.bat
index 531af4066..f12ae1c1b 100644
--- a/devscripts/run_tests.bat
+++ b/devscripts/run_tests.bat
@@ -1,17 +1,16 @@
+@setlocal
@echo off
+cd /d %~dp0..
-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^|post_hooks"
-
-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"
+if ["%~1"]==[""] (
+ set "test_set="
+) else if ["%~1"]==["core"] (
+ set "test_set=-k "not download""
+) else if ["%~1"]==["download"] (
+ set "test_set=-k download"
) else (
- echo YTDL_TEST_SET is not set or invalid
+ echo.Invalid test type "%~1". Use "core" ^| "download"
exit /b 1
)
-nosetests test --verbose %test_set:"=% %multiprocess_args:"=%
+pytest %test_set%