mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 13:22:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			418 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			418 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """QMK Python Unit Tests
 | |
| 
 | |
| QMK script to run unit and integration tests against our python code.
 | |
| """
 | |
| from milc import cli
 | |
| 
 | |
| 
 | |
| @cli.entrypoint('QMK Python Unit Tests')
 | |
| def main(cli):
 | |
|     """Use nose2 to run unittests
 | |
|     """
 | |
|     try:
 | |
|         import nose2
 | |
|     except ImportError:
 | |
|         cli.log.error('Could not import nose2! Please install it with {fg_cyan}pip3 install nose2')
 | |
|         return False
 | |
| 
 | |
|     nose2.discover()
 | 
