mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
Batchfile
17 lines
318 B
Batchfile
@setlocal
|
|
@echo off
|
|
cd /d %~dp0..
|
|
|
|
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""
|
|
) else (
|
|
echo.Invalid test type "%~1". Use "core" ^| "download"
|
|
exit /b 1
|
|
)
|
|
|
|
pytest %test_set%
|