mirror of
				https://github.com/LibreTranslate/LibreTranslate.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from argostranslate import package
 | 
						|
 | 
						|
from libretranslate.init import boot
 | 
						|
 | 
						|
 | 
						|
def test_boot_argos():
 | 
						|
    """Test Argos translate models initialization"""
 | 
						|
    boot(["en", "es"])
 | 
						|
 | 
						|
    assert len(package.get_installed_packages()) >= 2
 |