mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	preen
This commit is contained in:
		| @@ -54,8 +54,10 @@ async def test_runtime_stats( | |||||||
|             component_name = match.group(1) |             component_name = match.group(1) | ||||||
|             component_stats_found.add(component_name) |             component_stats_found.add(component_name) | ||||||
|  |  | ||||||
|     async with run_compiled(yaml_config, line_callback=check_output): |     async with ( | ||||||
|         async with api_client_connected() as client: |         run_compiled(yaml_config, line_callback=check_output), | ||||||
|  |         api_client_connected() as client, | ||||||
|  |     ): | ||||||
|         # Verify device is connected |         # Verify device is connected | ||||||
|         device_info = await client.device_info() |         device_info = await client.device_info() | ||||||
|         assert device_info is not None |         assert device_info is not None | ||||||
| @@ -70,9 +72,7 @@ async def test_runtime_stats( | |||||||
|         try: |         try: | ||||||
|             await asyncio.wait_for(second_stats_future, timeout=5.0) |             await asyncio.wait_for(second_stats_future, timeout=5.0) | ||||||
|         except asyncio.TimeoutError: |         except asyncio.TimeoutError: | ||||||
|                 pytest.fail( |             pytest.fail(f"Second 'Total stats' log not seen. Total seen: {stats_count}") | ||||||
|                     f"Second 'Total stats' log not seen. Total seen: {stats_count}" |  | ||||||
|                 ) |  | ||||||
|  |  | ||||||
|         # Verify we got at least 2 stats logs |         # Verify we got at least 2 stats logs | ||||||
|         assert stats_count >= 2, ( |         assert stats_count >= 2, ( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user