| language: python | |
| python: | |
| - "2.7" | |
| - "3.2" | |
| - "3.3" | |
| - "3.4" | |
| install: | |
| - python setup.py --quiet install | |
| script: | |
| - python test_autoflake.py | |
| - python test_acid.py test_acid.py | |
| after_success: | |
| - pip install --quiet coverage | |
| - coverage run --include='autoflake.py,test_autoflake.py' test_autoflake.py | |
| - coverage report --show-missing | |
| - pip install --quiet coveralls | |
| - coveralls |