mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
a387b69a7c
`-k` filters using a substring match on test name. `-m` checks markers for an exact match. Authored by: sulyi
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%
|