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