mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 09:01:40 +01:00 
			
		
		
		
	
		
			
	
	
		
			40 lines
		
	
	
		
			918 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
		
			918 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								# SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
							 | 
						||
| 
								 | 
							
								# SPDX-License-Identifier: CC0-1.0
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import pytest
							 | 
						||
| 
								 | 
							
								from pytest_embedded import Dut
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@pytest.mark.supported_targets
							 | 
						||
| 
								 | 
							
								@pytest.mark.generic
							 | 
						||
| 
								 | 
							
								@pytest.mark.parametrize(
							 | 
						||
| 
								 | 
							
								    'config',
							 | 
						||
| 
								 | 
							
								    [
							 | 
						||
| 
								 | 
							
								        'release',
							 | 
						||
| 
								 | 
							
								        'iram_safe',
							 | 
						||
| 
								 | 
							
								    ],
							 | 
						||
| 
								 | 
							
								    indirect=True,
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								def test_i2c(dut: Dut) -> None:
							 | 
						||
| 
								 | 
							
								    dut.run_all_single_board_cases()
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32c3
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32c6
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32h2
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32s2
							 | 
						||
| 
								 | 
							
								@pytest.mark.esp32s3
							 | 
						||
| 
								 | 
							
								@pytest.mark.generic_multi_device
							 | 
						||
| 
								 | 
							
								@pytest.mark.parametrize(
							 | 
						||
| 
								 | 
							
								    'count, config',
							 | 
						||
| 
								 | 
							
								    [
							 | 
						||
| 
								 | 
							
								        (2, 'defaults',),
							 | 
						||
| 
								 | 
							
								    ],
							 | 
						||
| 
								 | 
							
								    indirect=True
							 | 
						||
| 
								 | 
							
								)
							 | 
						||
| 
								 | 
							
								def test_i2c_multi_dev(case_tester) -> None:        # type: ignore
							 | 
						||
| 
								 | 
							
								    for case in case_tester.test_menu:
							 | 
						||
| 
								 | 
							
								        if case.attributes.get('test_env', 'generic_multi_device') == 'generic_multi_device':
							 | 
						||
| 
								 | 
							
								            case_tester.run_multi_dev_case(case=case, reset=True)
							 |