Fix missing api_results variable initialization in API performance test
Some checks failed
security-scanning / audit (push) Successful in 26s
api-endpoint-tests / test-api-endpoints (push) Failing after 1m24s

This commit is contained in:
aitbc1
2026-03-28 20:00:29 +01:00
parent aa91504129
commit 0b80ad074e

View File

@@ -462,6 +462,8 @@ jobs:
echo ' ("Blockchain RPC", "http://localhost:8545")' >> test_api_performance.py
echo ' ]' >> test_api_performance.py
echo ' ' >> test_api_performance.py
echo ' api_results = {}' >> test_api_performance.py
echo ' ' >> test_api_performance.py
echo ' for api_name, api_url in apis:' >> test_api_performance.py
echo ' print(f"🧪 Testing {api_name} performance...")' >> test_api_performance.py
echo ' ' >> test_api_performance.py