diff options
author | Ákos Sülyi <sulyi.gbox@gmail.com> | 2021-10-12 20:54:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 00:24:27 +0530 |
commit | a387b69a7cb55afb160d8f59df2593cb337a9db7 (patch) | |
tree | a7d5be05ecebe170048fbe8ed5a49722220f4bf6 /devscripts/run_tests.bat | |
parent | ecdc9049c0d8c00ad9ea5218126eefb1e7049385 (diff) | |
download | hypervideo-pre-a387b69a7cb55afb160d8f59df2593cb337a9db7.tar.lz hypervideo-pre-a387b69a7cb55afb160d8f59df2593cb337a9db7.tar.xz hypervideo-pre-a387b69a7cb55afb160d8f59df2593cb337a9db7.zip |
[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
Diffstat (limited to 'devscripts/run_tests.bat')
-rw-r--r-- | devscripts/run_tests.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devscripts/run_tests.bat b/devscripts/run_tests.bat index f12ae1c1b..b8bb393d9 100644 --- a/devscripts/run_tests.bat +++ b/devscripts/run_tests.bat @@ -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 |