Update workflows for agent coordinator and app deps
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 15s
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Integration Tests / test-service-integration (push) Successful in 2m37s
Production Tests / Production Integration Tests (push) Successful in 21s
Python Tests / test-python (push) Successful in 41s
Security Scanning / security-scan (push) Successful in 36s
Deploy to Testnet / notify-deployment (push) Successful in 3s
Node Failover Simulation / failover-test (push) Successful in 2s
Multi-Node Stress Testing / stress-test (push) Successful in 4s
Cross-Node Transaction Testing / transaction-test (push) Successful in 10s

This commit is contained in:
aitbc
2026-05-02 13:34:08 +02:00
parent 940615bb02
commit 316dc8e894
5 changed files with 25 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ import sys
API_HOST = os.environ.get("AITBC_API_HOST", "localhost")
SERVICES = {
"coordinator": {"url": f"http://{API_HOST}:8000", "endpoints": ["/", "/health", "/info"]},
"agent_coordinator": {"url": f"http://{API_HOST}:9001", "endpoints": ["/", "/health"]},
"exchange": {"url": f"http://{API_HOST}:8001", "endpoints": ["/", "/api/health", "/health", "/info"]},
"wallet": {"url": f"http://{API_HOST}:8003", "endpoints": ["/", "/health", "/wallets"]},
"blockchain_rpc": {"url": f"http://{API_HOST}:8006", "endpoints": ["/health", "/rpc/head", "/rpc/head?chain_id=ait-mainnet", "/rpc/head?chain_id=ait-testnet", "/rpc/mempool"]},
@@ -79,7 +79,7 @@ def main():
print("\n⚡ Performance tests...")
perf = test_performance([
("Coordinator", f"http://{API_HOST}:8000/health"),
("Agent Coordinator", f"http://{API_HOST}:9001/health"),
("Exchange", f"http://{API_HOST}:8001/api/health"),
("Wallet", f"http://{API_HOST}:8003/health"),
("Blockchain RPC", f"http://{API_HOST}:8006/health"),