Update backend schema

This commit is contained in:
Xin Wang
2026-02-08 14:26:19 +08:00
parent b9a315177a
commit 727fe8a997
16 changed files with 1532 additions and 94 deletions

14
api/run_tests.bat Normal file
View File

@@ -0,0 +1,14 @@
@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