This just eliminates all errors on the tests collection. Elimination of failures is left to the next commit.
		
			
				
	
	
		
			9 lines
		
	
	
		
			255 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			255 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| import logging
 | |
| 
 | |
| # Disable extra logging for tests
 | |
| logging.getLogger("boto").setLevel(logging.CRITICAL)
 | |
| logging.getLogger("boto3").setLevel(logging.CRITICAL)
 | |
| logging.getLogger("botocore").setLevel(logging.CRITICAL)
 |