aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts/run_tests.bat
blob: 190d23918ce9ef4e212258f4c4f6842903b2b2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@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
)

set PYTHONWARNINGS=error
pytest %test_set%