@echo off REM Run API tests cd /d "%~dp0" REM Install test dependencies echo Installing test dependencies... pip install pytest pytest-cov -q REM Run tests echo Running tests... pytest tests/ -v --tb=short pause