15 lines
216 B
Batchfile
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
|