1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00
yt-dlp/devscripts/run_tests.bat

17 lines
318 B
Batchfile
Raw Normal View History

@setlocal
2021-01-07 00:41:05 -06:00
@echo off
cd /d %~dp0..
2021-01-07 00:41:05 -06:00
if ["%~1"]==[""] (
set "test_set="test""
) else if ["%~1"]==["core"] (
set "test_set="-m not download""
) else if ["%~1"]==["download"] (
set "test_set="-m "download""
2021-01-07 00:41:05 -06:00
) else (
echo.Invalid test type "%~1". Use "core" ^| "download"
2021-01-07 00:41:05 -06:00
exit /b 1
)
pytest %test_set%