23 lines
		
	
	
		
			391 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			391 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| language: python
 | |
| python:
 | |
|   - 2.6
 | |
|   - 2.7
 | |
| env:
 | |
|     matrix:
 | |
|       - BOTO_VERSION=2.34.0
 | |
|       - BOTO_VERSION=2.25.0
 | |
|       - BOTO_VERSION=2.7
 | |
| matrix:
 | |
|     include:
 | |
|       - python: "3.3"
 | |
|         env: BOTO_VERSION=2.34.0
 | |
| install:
 | |
|   - pip install boto==$BOTO_VERSION
 | |
|   - pip install .
 | |
|   - pip install -r requirements.txt
 | |
|   - pip install coveralls
 | |
| script:
 | |
|   - make test
 | |
| after_success:
 | |
|   - coveralls
 |