Files
AI-VideoAssistant/api/run_tests.bat
2026-02-08 14:26:19 +08:00

15 lines
216 B
Batchfile

@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