mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-11-04 11:49:45 +00:00 
			
		
		
		
	Sequence classification and regression: "seq-classification" and "seq-regression" Co-authored-by: Chi Wang <wang.chi@microsoft.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			253 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			253 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest
 | 
						|
import flaml
 | 
						|
 | 
						|
 | 
						|
class TestVersion(unittest.TestCase):
 | 
						|
    def test_version(self):
 | 
						|
        self.assertTrue(hasattr(flaml, "__version__"))
 | 
						|
        self.assertTrue(len(flaml.__version__) > 0)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    unittest.main()
 |