mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
	
	
		
			27 lines
		
	
	
		
			800 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			800 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								# SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
							 | 
						||
| 
								 | 
							
								# SPDX-License-Identifier: Apache-2.0
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# pylint: disable=W0621  # redefined-outer-name
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import os
							 | 
						||
| 
								 | 
							
								import sys
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import pytest
							 | 
						||
| 
								 | 
							
								from _pytest.fixtures import FixtureRequest
							 | 
						||
| 
								 | 
							
								from _pytest.monkeypatch import MonkeyPatch
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								sys.path.append(os.path.expandvars(os.path.join('$IDF_PATH', 'tools', 'test_apps', 'system', 'panic')))
							 | 
						||
| 
								 | 
							
								from test_panic_util import PanicTestDut  # noqa: E402
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@pytest.fixture(scope='module')
							 | 
						||
| 
								 | 
							
								def monkeypatch_module(request: FixtureRequest) -> MonkeyPatch:
							 | 
						||
| 
								 | 
							
								    mp = MonkeyPatch()
							 | 
						||
| 
								 | 
							
								    request.addfinalizer(mp.undo)
							 | 
						||
| 
								 | 
							
								    return mp
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@pytest.fixture(scope='module', autouse=True)
							 | 
						||
| 
								 | 
							
								def replace_dut_class(monkeypatch_module: MonkeyPatch) -> None:
							 | 
						||
| 
								 | 
							
								    monkeypatch_module.setattr('pytest_embedded_idf.IdfDut', PanicTestDut)
							 |