This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/_TestScripts/Scripts and Tests/_test_route.py
T
2026-08-20 00:45:43 +02:00

9 lines
207 B
Python

from app import app
c = app.test_client()
r = c.get("/api/voices")
print("STATUS:", r.status_code)
print("DATA:", r.data[:300])
print("---")
r2 = c.get("/api/system")
print("SYSTEM STATUS:", r2.status_code)