mirror of
				https://github.com/hiyouga/LLaMA-Factory.git
				synced 2025-11-04 18:02:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			242 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			242 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.PHONY: quality style test
 | 
						|
 | 
						|
check_dirs := scripts src tests
 | 
						|
 | 
						|
quality:
 | 
						|
	ruff check $(check_dirs)
 | 
						|
	ruff format --check $(check_dirs)
 | 
						|
 | 
						|
style:
 | 
						|
	ruff check $(check_dirs) --fix
 | 
						|
	ruff format $(check_dirs)
 | 
						|
 | 
						|
test:
 | 
						|
	CUDA_VISIBLE_DEVICES= pytest tests/
 |