mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[devscripts/run_tests] Use markers to filter tests (#1258)
`-k` filters using a substring match on test name. `-m` checks markers for an exact match. Authored by: sulyi
This commit is contained in:
parent
ecdc9049c0
commit
a387b69a7c
2 changed files with 6 additions and 6 deletions
|
@ -3,11 +3,11 @@
|
|||
cd /d %~dp0..
|
||||
|
||||
if ["%~1"]==[""] (
|
||||
set "test_set="
|
||||
set "test_set="test""
|
||||
) else if ["%~1"]==["core"] (
|
||||
set "test_set=-k "not download""
|
||||
set "test_set="-m not download""
|
||||
) else if ["%~1"]==["download"] (
|
||||
set "test_set=-k download"
|
||||
set "test_set="-m "download""
|
||||
) else (
|
||||
echo.Invalid test type "%~1". Use "core" ^| "download"
|
||||
exit /b 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue