fix emojies

This commit is contained in:
Dobromir Popov
2025-11-22 21:46:35 +02:00
parent e541e16e7e
commit 9a06288911
37 changed files with 528 additions and 181 deletions

View File

@@ -40,10 +40,10 @@ async def test_database_connection():
# Test storage stats
stats = await manager.get_storage_stats()
logger.info(f"📊 Found {len(stats.get('table_sizes', []))} tables")
logger.info(f"Found {len(stats.get('table_sizes', []))} tables")
for table_info in stats.get('table_sizes', []):
logger.info(f" 📋 {table_info['table']}: {table_info['size']}")
logger.info(f" {table_info['table']}: {table_info['size']}")
await manager.close()
return True
@@ -55,7 +55,7 @@ async def test_database_connection():
async def test_data_storage():
"""Test storing and retrieving data"""
logger.info("💾 Testing data storage operations...")
logger.info("Testing data storage operations...")
try:
manager = TimescaleManager()
@@ -181,7 +181,7 @@ async def test_batch_operations():
async def test_configuration():
"""Test configuration system"""
logger.info("⚙️ Testing configuration system...")
logger.info("Testing configuration system...")
try:
# Test database configuration
@@ -237,7 +237,7 @@ async def run_all_tests():
# Summary
logger.info("\n" + "=" * 50)
logger.info("📋 TEST SUMMARY")
logger.info("TEST SUMMARY")
logger.info("=" * 50)
passed = sum(1 for _, result in results if result)
@@ -250,7 +250,7 @@ async def run_all_tests():
logger.info(f"\nOverall: {passed}/{total} tests passed")
if passed == total:
logger.info("🎉 All tests passed! System is ready.")
logger.info("All tests passed! System is ready.")
return True
else:
logger.error(" Some tests failed. Check configuration and database connection.")
@@ -265,7 +265,7 @@ if __name__ == "__main__":
success = asyncio.run(run_all_tests())
if success:
print("\n🎉 Integration tests completed successfully!")
print("\nIntegration tests completed successfully!")
print("The system is ready for the next development phase.")
sys.exit(0)
else: